/* ============ Base Reset ============ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
        }

        body {
            overflow-x: hidden !important;
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial,
                sans-serif;
            color: #fff;
            background-image: url('/images/img-webp/jeremiah.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        /* ============ Hero ============ */
        .hero {
            text-align: center;
            color: #ffffff;
            padding: 120px 20px 80px;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 60px;
        }

        .hero-h1 {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            transform: translateX(-100%);
            transition: transform 1s ease-out, opacity 1s ease-out;
            opacity: 0;
            margin-bottom: 100px;
        }

        .hero-p {
            font-size: 1.3rem;
            font-weight: 400;
            color: #e5e7eb;line-height: 1.6;
            transform: translateX(100%);
            transition: transform 1s ease-out, opacity 1s ease-out;
            opacity: 0;
        }

        .animate-h1 {
            transform: translateX(0);
            opacity: 1;
        }

        .animate-p {
            transform: translateX(0);
            opacity: 1;
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0 50px 0;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ============ Buttons ============ */
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(70, 87, 237, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(70, 87, 237, 0.4);
        }

        .btn.secondary {
            background: transparent;
            border: 2px solid #4657ed;
            color: #4657ed;
        }

        .btn.secondary:hover {
            background: #4657ed;
            color: #fff;
        }

        /* ============ Layout Backgrounds ============ */
        main {
            min-height: 100vh;
            background: rgba(0, 0, 0, 0.532);
            text-align: left;
            padding-top: 96px;
            padding-bottom: 50px;
        }

        /* ============ Contact Sections ============ */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-section {
            background: rgba(2, 10, 34, 0.9);
            border-radius: 20px;
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(70, 87, 237, 0.2);
            overflow: hidden;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4657ed, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-align: center;
        }

        /* ============ Contact Info Cards ============ */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 40px;
        }

        .contact-card {
            background: rgba(70, 87, 237, 0.1);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(70, 87, 237, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(70, 87, 237, 0.2);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: #4657ed;
            margin-bottom: 20px;
        }

        .contact-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .contact-details {
            color: #e5e7eb;
            line-height: 1.6;
        }

        .contact-details a {
            color: #06b6d4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #4657ed;
        }

        /* ============ Contact Form ============ */
        .form-section {
            padding: 40px;
        }

        .contact-form {
            max-width: 800px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #e5e7eb;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(70, 87, 237, 0.1);
            border: 1px solid rgba(70, 87, 237, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4657ed;
            box-shadow: 0 0 0 3px rgba(70, 87, 237, 0.2);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #9ca3af;
        }

        .form-submit {
            text-align: center;
            margin-top: 30px;
        }

        /* ============ Google Maps ============ */
        .map-section {
            padding: 0;
            height: 400px;
        }

        .map-container {
            width: 100%;
            height: 100%;
            border-radius: 0 0 20px 20px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: hue-rotate(200deg) invert(90%) saturate(120%);
        }

        /* ============ Social Links ============ */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(70, 87, 237, 0.1);
            border: 1px solid rgba(70, 87, 237, 0.3);
            border-radius: 50%;
            color: #4657ed;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #4657ed;
            color: #fff;
            transform: translateY(-2px);
        }

        /* ======== Mobile / Tablet Styles (<= 1024px) ======== */
        @media (max-width: 1024px) {

            #navMenu.active {
                display: block;
            }

            .hero-h1 {
                font-size: 2.5rem;
            }

            .hero-p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .form-section {
                padding: 20px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                padding: 0 10px;
            }

            .map-section {
                height: 300px;
            }
        }

        /* ============ Reduced Motion ============ */
        @media (prefers-reduced-motion: reduce) {

            .hero-h1,
            .hero-p,
            .btn,
            .info-item {
                transition: none !important;
                animation: none !important;
                transform: none !important;
            }
        }

/* Inline style replacements */
.inline-style-1 { border:0; }
.inline-style-2 { text-align: center; }
.inline-style-3 { max-width: 800px; margin: 0 auto; color: #e5e7eb; font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; }
.inline-style-4 { margin-bottom: 20px; }
.inline-style-5 { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
