        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #f0f2f5;
            color: #333;
            min-height: 100vh;
        }

        .hero-section {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            padding: 80px 20px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-section h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            min-width: 180px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-item i {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .stat-item span {
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

        .app-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .form-container {
            flex: 1;
            min-width: 350px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .preview-container {
            flex: 1;
            min-width: 350px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #fdbb2d;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background: #f9f9f9;
        }

        input:focus, textarea:focus, select:focus {
            border-color: #1a2a6c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
            background: white;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .file-input-container {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
            margin-bottom: 10px;
        }

        .file-input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-input-label {
            display: block;
            padding: 12px;
            background: #f0f2f5;
            border: 2px dashed #cbd5e0;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            color: #4a5568;
        }

        .file-input-label:hover {
            background: #edf2f7;
            border-color: #1a2a6c;
            color: #1a2a6c;
        }

        .image-option-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .logo-preview, .qr-preview {
            max-width: 150px;
            max-height: 150px;
            margin-top: 10px;
            display: block;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 5px;
            background: white;
        }

        .days-container {
            margin-top: 20px;
        }

        .day-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-left: 5px solid #1a2a6c;
            position: relative;
            transition: transform 0.2s;
        }

        .day-item:hover {
            transform: scale(1.01);
        }

        .day-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .day-title {
            font-weight: 700;
            color: #1a2a6c;
            font-size: 1.2rem;
        }

        .remove-day {
            background: #fee2e2;
            color: #dc2626;
            border: none;
            border-radius: 8px;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .remove-day:hover {
            background: #fecaca;
        }

        .day-image-preview {
            max-width: 100%;
            max-height: 200px;
            margin-top: 15px;
            border-radius: 10px;
            display: none;
            object-fit: cover;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .btn {
            background: linear-gradient(to right, #1a2a6c, #b21f1f);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 14px 24px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(26, 42, 108, 0.2);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
        }

        .btn-secondary {
            background: linear-gradient(to right, #fdbb2d, #b21f1f);
            box-shadow: 0 4px 15px rgba(253, 187, 45, 0.2);
        }

        .preview-content {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            overflow-y: auto;
            max-height: 700px;
            background: #fff;
        }

        .itinerary-preview {
            background: white;
            padding: 40px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .itinerary-preview::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
        }

        .itinerary-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .preview-logo {
            max-width: 200px;
            max-height: 120px;
            margin-bottom: 20px;
        }

        .itinerary-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: #1a2a6c;
            margin-bottom: 8px;
            font-size: 2.5rem;
        }

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

        .detail-item {
            background: #f8fafc;
            padding: 15px;
            border-radius: 12px;
            border-left: 5px solid #1a2a6c;
        }

        .detail-label {
            font-weight: 700;
            color: #1a2a6c;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .days-preview {
            margin-top: 30px;
        }

        .day-preview {
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
        }

        .day-preview:last-child {
            border-bottom: none;
        }

        .day-title-preview {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }

        .day-title-preview::before {
            content: "";
            display: inline-block;
            width: 15px;
            height: 15px;
            background: #fdbb2d;
            border-radius: 50%;
            margin-right: 15px;
            box-shadow: 0 0 10px rgba(253, 187, 45, 0.5);
        }

        .day-image-preview-full {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 25px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 10px;
            overflow-x: auto;
        }

        .tab {
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
            color: #64748b;
        }

        .tab.active {
            background: #1a2a6c;
            color: white;
            box-shadow: 0 4px 12px rgba(26, 42, 108, 0.2);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .policy-details {
            margin-top: 25px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .policy-details h4 {
            color: #1a2a6c;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-icons a {
            color: #1a2a6c;
            font-size: 1.5rem;
            transition: all 0.3s;
            background: #f1f5f9;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .social-icons a:hover {
            color: white;
            background: #1a2a6c;
            transform: translateY(-3px);
        }

        /* PDF Styles */
        .pdf-page {
            width: 210mm;
            min-height: 297mm;
            padding: 15mm;
            background: white;
            position: relative;
            box-sizing: border-box;
            color: #333;
            font-family: 'Poppins', sans-serif;
        }

        .pdf-header {
            text-align: center;
            margin-bottom: 10mm;
            border-bottom: 0.5mm solid #fdbb2d;
            padding-bottom: 5mm;
        }

        .pdf-logo {
            max-width: 50mm;
            max-height: 25mm;
            margin-bottom: 4mm;
        }

        .pdf-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24pt;
            font-weight: 800;
            color: #1a2a6c;
            margin-bottom: 2mm;
        }

        .pdf-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 14pt;
            font-weight: 700;
            color: #1a2a6c;
            margin: 6mm 0 3mm 0;
            padding-bottom: 1mm;
            border-bottom: 0.3mm solid #fdbb2d;
        }

        .pdf-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5mm;
            margin-bottom: 8mm;
        }

        .pdf-grid-item {
            background: #f8f9fa;
            padding: 4mm;
            border-radius: 2mm;
            border-left: 1mm solid #1a2a6c;
        }

        .pdf-day {
            margin-bottom: 8mm;
            page-break-inside: avoid;
        }

        .pdf-day-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 12pt;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 2mm;
            display: flex;
            align-items: center;
        }

        .pdf-day-title::before {
            content: "";
            display: inline-block;
            width: 3mm;
            height: 3mm;
            background: #fdbb2d;
            border-radius: 50%;
            margin-right: 3mm;
        }

        .pdf-day-img {
            width: 100%;
            max-height: 80mm;
            object-fit: cover;
            border-radius: 3mm;
            margin-bottom: 3mm;
        }

        .pdf-qr-code {
            max-width: 30mm;
            margin-top: 4mm;
        }

        .pdf-footer {
            position: absolute;
            bottom: 10mm;
            left: 15mm;
            right: 15mm;
            padding-top: 4mm;
            border-top: 1px solid #ddd;
            font-size: 8.5pt;
            color: #666;
            text-align: center;
        }

        #pdf-export-container {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 210mm;
        }

        .list-item {
            margin-bottom: 5px;
            display: flex;
            align-items: flex-start;
        }
        .list-item::before {
            content: "•";
            margin-right: 8px;
            color: #1a2a6c;
        }

        .readonly-field {
            background-color: #f1f5f9;
            cursor: not-allowed;
            color: #64748b;
        }

        /* Protection against copying */
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        input, textarea {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }
        @media print {
            body {
                display: none;
            }
        }
        .itinerary-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: #1a2a6c;
            margin-bottom: 8px;
            font-size: 2.5rem;
        }

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

        .detail-item {
            background: #f8fafc;
            padding: 15px;
            border-radius: 12px;
            border-left: 5px solid #1a2a6c;
        }

        .detail-label {
            font-weight: 700;
            color: #1a2a6c;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .days-preview {
            margin-top: 30px;
        }

        .day-preview {
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
        }

        .day-preview:last-child {
            border-bottom: none;
        }

        .day-title-preview {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }

        .day-title-preview::before {
            content: "";
            display: inline-block;
            width: 15px;
            height: 15px;
            background: #fdbb2d;
            border-radius: 50%;
            margin-right: 15px;
            box-shadow: 0 0 10px rgba(253, 187, 45, 0.5);
        }

        .day-image-preview-full {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 25px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 10px;
            overflow-x: auto;
        }

        .tab {
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
            color: #64748b;
        }

        .tab.active {
            background: #1a2a6c;
            color: white;
            box-shadow: 0 4px 12px rgba(26, 42, 108, 0.2);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .policy-details {
            margin-top: 25px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .policy-details h4 {
            color: #1a2a6c;
            margin-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
        }

        .social-icons a {
            color: #1a2a6c;
            font-size: 1.5rem;
            transition: all 0.3s;
            background: #f1f5f9;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .social-icons a:hover {
            color: white;
            background: #1a2a6c;
            transform: translateY(-3px);
        }

        /* PDF Styles */
        .pdf-page {
            width: 210mm;
            min-height: 297mm;
            padding: 15mm;
            background: white;
            position: relative;
            box-sizing: border-box;
            color: #333;
            font-family: 'Poppins', sans-serif;
        }

        .pdf-header {
            text-align: center;
            margin-bottom: 10mm;
            border-bottom: 0.5mm solid #fdbb2d;
            padding-bottom: 5mm;
        }

        .pdf-logo {
            max-width: 50mm;
            max-height: 25mm;
            margin-bottom: 4mm;
        }

        .pdf-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24pt;
            font-weight: 800;
            color: #1a2a6c;
            margin-bottom: 2mm;
        }

        .pdf-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 14pt;
            font-weight: 700;
            color: #1a2a6c;
            margin: 6mm 0 3mm 0;
            padding-bottom: 1mm;
            border-bottom: 0.3mm solid #fdbb2d;
        }

        .pdf-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5mm;
            margin-bottom: 8mm;
        }

        .pdf-grid-item {
            background: #f8f9fa;
            padding: 4mm;
            border-radius: 2mm;
            border-left: 1mm solid #1a2a6c;
        }

        .pdf-day {
            margin-bottom: 8mm;
            page-break-inside: avoid;
        }

        .pdf-day-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 12pt;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 2mm;
            display: flex;
            align-items: center;
        }

        .pdf-day-title::before {
            content: "";
            display: inline-block;
            width: 3mm;
            height: 3mm;
            background: #fdbb2d;
            border-radius: 50%;
            margin-right: 3mm;
        }

        .pdf-day-img {
            width: 100%;
            max-height: 80mm;
            object-fit: cover;
            border-radius: 3mm;
            margin-bottom: 3mm;
        }

        .pdf-qr-code {
            max-width: 30mm;
            margin-top: 4mm;
        }

        .pdf-footer {
            position: absolute;
            bottom: 10mm;
            left: 15mm;
            right: 15mm;
            padding-top: 4mm;
            border-top: 1px solid #ddd;
            font-size: 8.5pt;
            color: #666;
            text-align: center;
        }

        #pdf-export-container {
            position: absolute;
            left: -9999px;
            top: -9999px;
            width: 210mm;
        }

        .list-item {
            margin-bottom: 5px;
            display: flex;
            align-items: flex-start;
        }
        .list-item::before {
            content: "•";
            margin-right: 8px;
            color: #1a2a6c;
        }

        .readonly-field {
            background-color: #f1f5f9;
            cursor: not-allowed;
            color: #64748b;
        }
