 
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }

        /* ===== TOP HEADER BAR ===== */
        .top-header {
            background: linear-gradient(135deg, #0D0D0D 0%, #1a0505 100%);
            border-bottom: 1px solid rgba(232,24,27,0.3);
            padding: 7px 0;
            font-size: 13px;
            z-index: 1200;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }
        .top-header .th-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }
        .top-header .contact-info {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: nowrap;
            overflow: hidden;
        }
        .top-header .contact-info a,
        .top-header .contact-info span {
            color: #ccd6f6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
            font-weight: 500;
            white-space: nowrap;
        }
        .top-header .contact-info a:hover { color: var(--primary); }
        .top-header .contact-info i { color: var(--primary); font-size: 11px; }
        .top-header .social-links {
            display: flex;
            align-items: center;
            gap: 7px;
            flex-shrink: 0;
        }
        .top-header .social-links a {
            width: 26px; height: 26px;
            border-radius: 50%;
            background: rgba(232,24,27,0.1);
            border: 1px solid rgba(232,24,27,0.25);
            display: flex; align-items: center; justify-content: center;
            color: #ccd6f6;
            text-decoration: none;
            font-size: 11px;
            transition: 0.2s;
        }
        .top-header .social-links a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .top-header .th-divider {
            width: 1px; height: 14px;
            background: rgba(232,24,27,0.3);
            flex-shrink: 0;
        }
        /* Tablet: hide location */
        @media (max-width: 767px) {
            .top-header .th-hide-md { display: none !important; }
        }
        /* Mobile: show only one phone + socials, compact */
        @media (max-width: 575px) {
            .top-header { padding: 6px 0; font-size: 11.5px; }
            .top-header .th-hide-sm { display: none !important; }
            .top-header .contact-info { gap: 8px; }
            .top-header .social-links { gap: 5px; }
            .top-header .social-links a { width: 23px; height: 23px; font-size: 10px; }
        }
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
            background: #0D0D0D;
        }
        
        :root {
            --primary: #E8181B;
            --primary-dark: #b81215;
            --secondary: #E87A1B;
            --secondary-light: #f0952e;
            --accent: #E8181B;
            --dark: #0D0D0D;
            --dark-card: #1a1a1a;
            --text-light: #f3f4f6;
            --text-gray: #9ca3af;
            --glass: rgba(255,255,255,0.05);
            --shadow-neon: 0 0 20px rgba(232,24,27,0.3);
        }
        
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, #0D0D0D 0%, #1a0a0a 50%, #0D0D0D 100%);
        }
        
        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 50%, rgba(232,24,27,0.08) 0%, transparent 50%);
            animation: pulse 8s ease infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            50% { transform: translate(5%, 5%) scale(1.1); opacity: 0.8; }
        }
        
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #1a0a0a; }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
        
        /* Glass Navbar */
        .navbar-glass {
            background: #fff;
            backdrop-filter: blur(12px);
            border-bottom: 2px solid rgba(232,24,27,0.4);
            padding: 4px 0;
            transition: 0.3s;
            top: 40px;
        }
        @media (max-width: 575px) {
            .navbar-glass { top: 38px; padding: 3px 0; }
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            background: linear-gradient(135deg, #E8181B, #E87A1B);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 4px 0;
        }
        
        /* ── DESKTOP logo (992px and above) ── */
        .navbar-brand img {
            width: 190px !important;
            height: auto !important;
            display: block;
            transition: opacity 0.3s;
        }

        /* ── TABLET logo (576px – 991px) ── */
        @media (max-width: 991px) {
            .navbar-brand img {
                width: 160px !important;
            }
        }

        /* ── MOBILE logo (below 576px) ── */
        @media (max-width: 575px) {
            .navbar-brand img {
                width: 120px !important;
            }
        }
        
        .nav-link {
            color:#000 !important;
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: 0.3s;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .nav-link:hover::before { width: 100%; }
        .nav-link:hover { color: var(--primary) !important; transform: translateY(-2px); }
        
        .dropdown-menu-glass {
            background: rgba(15,5,5,0.97);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(232,24,27,0.25);
            border-radius: 20px;
            padding: 12px 0;
        }
        
        .dropdown-item-glass {
            color: var(--text-light);
            padding: 5px 28px;
            font-weight: 500;
            transition: 0.2s;
            font-size:13px;
        }
        
        .dropdown-item-glass:hover {
            background: linear-gradient(90deg, rgba(232,24,27,0.12), rgba(232,122,27,0.1));
            color: var(--primary);
            padding-left: 35px;
        }
        
        .btn-neon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            color: #fff !important;
            transition: 0.3s;
            box-shadow: 0 0 15px rgba(232,24,27,0.35);
        }
        
        .btn-neon:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(232,122,27,0.6);
        }
        
        /* Hero carousel styles */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            height: auto;
            overflow: hidden;
            background: #0D0D0D;
            margin-top: 0;
            padding-top: 110px;
        }
        
        .hero-carousel-container {
            position: relative;
            width: 100%;
            height: calc(100vh - 110px);
            min-height: 500px;
            overflow: hidden;
        }
        
        .hero-carousel-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .mySlides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: block !important;
        }
        
        .mySlides.active-slide {
            opacity: 1;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .hero-section { padding-top: 108px; min-height: 480px; }
            .hero-carousel-container { height: calc(100vh - 108px); min-height: 420px; }
        }
        
        /* ========== ABOUT US SECTION ========== */
        .about-section {
            padding: 90px 0;
            background: linear-gradient(180deg, #0D0D0D 0%, #1a0808 60%, #0D0D0D 100%);
            position: relative;
            overflow: hidden;
        }
        .about-section::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,24,27,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .about-section::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -100px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,122,27,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .about-img-wrap {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }
        .about-img-wrap img {
            width: 100%; height: 420px;
            object-fit: cover;
            border-radius: 24px;
            display: block;
        }
        .about-img-wrap::after {
            content: '';
            position: absolute; inset: 0;
            border-radius: 24px;
            border: 2px solid rgba(232,24,27,0.3);
            pointer-events: none;
        }
        .about-badge {
            position: absolute;
            bottom: 24px; left: 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 12px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 8px 30px rgba(232,24,27,0.4);
        }
        .section-tag {
            display: inline-block;
            background: rgba(232,24,27,0.1);
            border: 1px solid rgba(232,24,27,0.35);
            color: var(--primary);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 18px;
        }
        .section-title span { color: var(--secondary); }
        .about-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 32px;
        }
        .stat-box {
            text-align: center;
        }
        .stat-box .num {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .stat-box .lbl {
            color: var(--text-gray);
            font-size: 13px;
            margin-top: 4px;
        }
        .about-features { margin-top: 28px; }
        .about-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
        }
        .about-feature-item .icon {
            width: 42px; height: 42px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(232,24,27,0.15), rgba(232,122,27,0.1));
            border: 1px solid rgba(232,24,27,0.25);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
            font-size: 16px;
        }
        .about-feature-item h6 {
            color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 3px;
        }
        .about-feature-item p {
            color: var(--text-gray); font-size: 13px; margin: 0;
        }
        @media (max-width: 767px) {
            .about-section { padding: 60px 0; }
            .about-img-wrap img { height: 280px; }
            .about-stats { gap: 20px; }
        }

        /* ========== PRODUCTS SECTION ========== */
        .products-section {
            padding: 90px 0;
            background: #111111;
            position: relative;
            overflow: hidden;
        }
        .products-section::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 800px; height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,24,27,0.05) 0%, transparent 65%);
            pointer-events: none;
        }
        .product-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,24,27,0.25);
            border-color: rgba(232,24,27,0.35);
        }
        .product-img-wrap {
            position: relative;
            overflow: hidden;
            height: 220px;
        }
        .product-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }
        .product-card:hover .product-img-wrap img {
            transform: scale(1.06);
        }
        .product-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(0deg, rgba(10,0,0,0.88) 0%, transparent 50%);
            opacity: 0;
            transition: 0.3s;
            display: flex; align-items: flex-end; justify-content: center;
            padding-bottom: 16px;
        }
        .product-card:hover .product-overlay { opacity: 1; }
        .product-overlay-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 8px 24px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
        }
        .product-badge {
            position: absolute;
            top: 14px; left: 14px;
            background: linear-gradient(135deg, var(--primary), #b81215);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .product-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-body h5 {
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 8px;
        }
        .product-body p {
            color: var(--text-gray);
            font-size: 13px;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 14px;
        }
        .product-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .product-tag {
            background: rgba(232,24,27,0.08);
            border: 1px solid rgba(232,24,27,0.25);
            color: var(--primary);
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 50px;
            font-weight: 500;
        }
        @media (max-width: 767px) {
            .products-section { padding: 60px 0; }
            .product-img-wrap { height: 190px; }
        }

        /* ========== PRODUCT SECTION – RESPONSIVE & ALIGNMENT FIXED ========== */
 
        
        .footer-modern {
            background: #080808;
            padding: 60px 0 30px;
            border-top: 2px solid rgba(232,24,27,0.2);
        }
        
        .float-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .float-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: 0.3s;
            text-decoration: none;
            color: white;
        }
        .float-wa { background: #25D366; }
        .float-call { background: var(--secondary); }
        .float-btn:hover { transform: scale(1.1); }
        
        .text-gray { color: var(--text-gray); }
        @media (max-width: 768px) {
            .contact-glass { padding: 24px; }
            .small-banner .row > div { margin-bottom: 20px; }
        }

        /* ========== WHY CHOOSE US SECTION ========== */
        .why-section {
            padding: 90px 0;
            background: linear-gradient(180deg, #0D0D0D 0%, #1a0808 60%, #0D0D0D 100%);
            position: relative;
            overflow: hidden;
        }
        .why-section::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 900px; height: 900px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,122,27,0.05) 0%, transparent 65%);
            pointer-events: none;
        }
        .why-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 32px 28px;
            height: 100%;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            position: relative;
            overflow: hidden;
        }
        .why-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px; height: 0;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 4px 0 0 4px;
            transition: height 0.4s ease;
        }
        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,24,27,0.25);
            border-color: rgba(232,24,27,0.3);
        }
        .why-card:hover::before { height: 100%; }
        .why-icon {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, rgba(232,24,27,0.15), rgba(232,122,27,0.1));
            border: 1px solid rgba(232,24,27,0.25);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .why-card:hover .why-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border-color: transparent;
        }
        .why-card h5 {
            color: #fff;
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 10px;
        }
        .why-card p {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }
        .why-counter-wrap {
            display: flex;
            gap: 0;
            background: var(--dark-card);
            border: 1px solid rgba(232,24,27,0.2);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 60px;
        }
        .why-counter-item {
            flex: 1;
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid rgba(232,24,27,0.15);
            position: relative;
        }
        .why-counter-item:last-child { border-right: none; }
        .why-counter-item .num {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .why-counter-item .lbl {
            color: var(--text-gray);
            font-size: 13px;
            margin-top: 6px;
        }
        @media (max-width: 767px) {
            .why-section { padding: 60px 0; }
            .why-counter-wrap { flex-wrap: wrap; }
            .why-counter-item { flex: 1 1 50%; border-bottom: 1px solid rgba(232,24,27,0.15); }
        }

        /* ========== GALLERY SECTION ========== */
        .gallery-section {
            padding: 90px 0;
            background: #111111;
            position: relative;
            overflow: hidden;
        }
        .gallery-section::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,24,27,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        .filter-btn {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            color: var(--text-gray);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: transparent;
            color: #fff;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
            display: block;
        }
        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(0deg, rgba(10,0,0,0.85) 0%, rgba(232,24,27,0.15) 100%);
            opacity: 0;
            transition: 0.35s;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 8px;
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay i {
            font-size: 28px;
            color: #fff;
            transform: scale(0.8);
            transition: transform 0.3s;
        }
        .gallery-item:hover .gallery-overlay i { transform: scale(1); }
        .gallery-overlay span {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            font-weight: 600;
        }
        .gallery-item.wide { grid-column: span 2; }
        /* Lightbox */
        .lightbox-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        .lightbox-overlay.open { display: flex; }
        .lightbox-img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 12px;
            object-fit: contain;
            box-shadow: 0 0 60px rgba(232,24,27,0.3);
        }
        .lightbox-close {
            position: absolute;
            top: 20px; right: 24px;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            background: rgba(232,24,27,0.6);
            width: 44px; height: 44px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: 0.2s;
        }
        .lightbox-close:hover { background: var(--primary); }
        @media (max-width: 767px) {
            .gallery-section { padding: 60px 0; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .gallery-item.wide { grid-column: span 1; }
        }
        @media (max-width: 480px) {
            .gallery-grid { grid-template-columns: 1fr 1fr; }
        }

        /* ========== CONTACT SECTION ========== */
        .contact-section {
            padding: 90px 0;
            background: linear-gradient(180deg, #0D0D0D 0%, #1a0808 60%, #0D0D0D 100%);
            position: relative;
            overflow: hidden;
        }
        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -100px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,122,27,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .contact-info-card {
            background: var(--dark-card);
            border: 1px solid rgba(232,24,27,0.2);
            border-radius: 20px;
            padding: 36px 32px;
            height: 100%;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 28px;
        }
        .contact-info-item:last-child { margin-bottom: 0; }
        .c-icon {
            width: 50px; height: 50px; flex-shrink: 0;
            background: linear-gradient(135deg, rgba(232,24,27,0.15), rgba(232,122,27,0.1));
            border: 1px solid rgba(232,24,27,0.3);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
            font-size: 18px;
        }
        .contact-info-item h6 {
            color: var(--text-gray);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .contact-info-item p, .contact-info-item a {
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            margin: 0;
            text-decoration: none;
            line-height: 1.5;
            transition: color 0.2s;
        }
        .contact-info-item a:hover { color: var(--primary); }
        .contact-form-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 36px 32px;
        }
        .form-control-dark {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            color: #fff;
            padding: 12px 16px;
            font-size: 14px;
            transition: 0.3s;
            width: 100%;
            font-family: 'Space Grotesk', sans-serif;
        }
        .form-control-dark:focus {
            outline: none;
            border-color: rgba(232,24,27,0.5);
            background: rgba(232,24,27,0.05);
            box-shadow: 0 0 0 3px rgba(232,24,27,0.1);
            color: #fff;
        }
        .form-control-dark::placeholder { color: var(--text-gray); }
        .map-wrap {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(232,24,27,0.2);
            margin-top: 40px;
        }
        .map-wrap iframe {
            width: 100%;
            height: 300px;
            display: block;
            filter: grayscale(30%) contrast(1.1);
        }
        @media (max-width: 767px) {
            .contact-section { padding: 60px 0; }
            .contact-info-card, .contact-form-card { padding: 24px 20px; }
        }
    </style>