 /* ============================
           1. CORE VARIABLES (Theme)
           ============================ */
        :root {
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --text-main: #1f2937;
            --text-muted: #64748b;
            --primary: #FF6534; /* Primary Color */
            --primary-hover: #e55520;
            --border: #e2e8f0;
            --radius-lg: 16px;
            --radius-sm: 8px;
            --shadow-sm: 0 4px 15px rgba(0,0,0,0.03);
            --shadow-md: 0 10px 25px rgba(0,0,0,0.06);
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Base Reset */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        
        html, body { width: 100%; overflow-x: hidden; position: relative; }
        body { background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
        a { text-decoration: none; color: inherit; }

        /* ============================
           2. ANNOUNCEMENT BAR & NAV
           ============================ */
        .announcement-bar {
            position: fixed; top: 0; left: 0; width: 100%; height: 30px;
            background: linear-gradient(90deg, var(--primary) 0%, #ff8c66 100%);
            color: #ffffff; display: flex; justify-content: center; align-items: center;
            padding: 0 5%; z-index: 1002; font-size: 12px; font-weight: 500;
            box-shadow: 0 2px 10px rgba(255, 101, 52, 0.2); transition: transform 0.3s ease;
        }
        .announcement-bar .badge { background: rgba(255, 255, 255, 0.25); padding: 2px 8px; border-radius: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-right: 10px; letter-spacing: 0.5px; }
        .announcement-bar p { margin: 0; display: flex; align-items: center; }
        .announcement-bar a { color: #ffffff; font-weight: 700; text-decoration: none; margin-left: 6px; border-bottom: 1px solid rgba(255, 255, 255, 0.5); transition: border-color 0.3s; }
        .announcement-bar a:hover { border-color: #ffffff; }

        nav {
            position: fixed; top: 30px; width: 100%; background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
            padding: 15px 5%; display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); transition: top 0.3s ease;
        }
        .logo { font-size: 24px; font-weight: 700; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
        .logo i { color: var(--primary); }

        .nav-links { display: flex; align-items: center; margin-left: auto; }
        .nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; margin-left: 30px; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); }
        .nav-links .close-btn, .nav-links .menu-header { display: none; }

        .hamburger { display: none; background: none; border: none; font-size: 24px; color: var(--text-main); cursor: pointer; transition: color 0.3s; margin-left: 20px; }
        .hamburger:hover { color: var(--primary); }
        .menu-overlay { display: none; }

        /* ============================
           3. CONTACT LAYOUT
           ============================ */
        .contact-wrapper {
            padding: 140px 5% 80px;
            max-width: 1200px;
            margin: 0 auto;
            flex-grow: 1;
            width: 100%;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header h1 {
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .contact-header h1 span {
            position: relative;
            display: inline-block;
        }

        .heading-underline {
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 12px;
            z-index: -1;
        }

        .contact-header p {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 500;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: start;
        }

        /* Left Side: Info */
        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-box {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .info-icon {
            width: 55px;
            height: 55px;
            background: rgba(255, 101, 52, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .info-box:hover .info-icon {
            transform: scale(1.1);
            background: var(--primary);
            color: white;
        }

        .info-text h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 5px;
        }

        .info-text p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .info-text a {
            color: var(--primary);
            font-weight: 500;
            transition: color 0.3s;
        }

        .info-text a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        /* Right Side: Form */
        .contact-form-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
        }

        input[type="text"], input[type="email"], textarea, select {
            width: 100%;
            padding: 14px;
            background: var(--bg-body);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-main);
            font-size: 15px;
            transition: all 0.3s ease;
            outline: none;
        }

        input:focus, textarea:focus, select:focus {
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(255, 101, 52, 0.1);
            background: var(--bg-card);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
            cursor: pointer;
        }

        .btn-submit {
            background: var(--primary);
            color: white;
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            display: block;
            width: 100%;
            text-align: center;
            border: none;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 101, 52, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Success/Error Message States */
        .success-message, .error-message {
            padding: 15px 20px;
            border-radius: var(--radius-sm);
            margin-bottom: 20px;
            text-align: center;
            font-weight: 500;
            animation: fadeIn 0.5s ease;
            display: none;
        }

        .success-message {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid #10b981;
            color: #059669;
        }

        .error-message {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid #dc2626;
            color: #dc2626;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================
           4. FOOTER & RESPONSIVE
           ============================ */
        footer { background-color: #ffffff; border-top: 1px solid var(--border); padding: 60px 5% 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.02); margin-top: auto; }
        .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 2fr; gap: 50px; margin-bottom: 50px; }
        .footer-brand .footer-logo { font-size: 24px; font-weight: 700; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
        .footer-brand .footer-logo i { color: var(--primary); }
        .footer-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 25px; max-width: 380px; }
        .social-icons { display: flex; gap: 12px; }
        .social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-body); color: var(--text-muted); border-radius: 50%; font-size: 18px; transition: all 0.3s ease; }
        .social-icons a:hover { background: var(--primary); color: white; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 101, 52, 0.2); }
        .footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .footer-col h4 { color: var(--text-main); font-size: 17px; font-weight: 600; margin-bottom: 20px; }
        .footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 15px; margin-bottom: 12px; transition: all 0.3s ease; }
        .footer-col a:hover { color: var(--primary); transform: translateX(4px); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; color: var(--text-muted); font-size: 14px; padding-top: 25px; border-top: 1px solid var(--border); }

        @media (max-width: 900px) {
            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .contact-form-card { order: -1; }
        }

        @media (max-width: 768px) {
            .announcement-bar { font-size: 11px; }
            .contact-wrapper { padding-top: 120px; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .form-row .form-group { margin-bottom: 20px; }
            .contact-form-card { padding: 30px 20px; }
            
            /* Mobile Nav Logic */
            .hamburger { display: block; }
            .nav-links {
                position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background-color: #ffffff;
                flex-direction: column; align-items: flex-start; padding: 25px; box-shadow: 4px 0 20px rgba(0,0,0,0.1);
                transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1); z-index: 1005; margin-left: 0;
            }
            .nav-links.active { left: 0; }
            .nav-links .menu-header { display: flex; justify-content: space-between; align-items: center; width: 100%; font-size: 20px; font-weight: 700; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
            .nav-links .close-btn { display: block; background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
            .nav-links a { margin: 0 0 25px 0; font-size: 18px; width: 100%; }
            .menu-overlay { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(3px); z-index: 1004; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
            .menu-overlay.active { opacity: 1; visibility: visible; }
            
            .footer-top { grid-template-columns: 1fr; gap: 40px; }
            .footer-nav { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 480px) {
            .footer-nav { grid-template-columns: 1fr; gap: 25px; }
        }