/* Color Variables based on Ziaratnama Travels Theme */
:root {
    --navy: #1a365d;
    --green: #2c5530;
    --gold-dark: #c7941e;
    --gold-light: #f7e98e;
    --red: #dc2626;
    --cream: #fffef7;
    --text-dark: #0a1219;
    --text-muted: rgba(10, 18, 25, 0.7);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--navy), var(--green), var(--navy));
    background-size: 200% 200%;
    animation: bgShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background Animations (Glowing Orbs) */
.background-animations {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 6s infinite alternate ease-in-out;
}

.blob-1 {
    top: 10%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: rgba(199, 148, 30, 0.25); /* Gold */
}

.blob-2 {
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: rgba(104, 211, 145, 0.2); /* Light Green */
    animation-delay: 2s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: rgba(26, 54, 93, 0.4); /* Navy */
    animation-delay: 4s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.1) translate(20px, -20px); opacity: 1; }
}

/* Main Container / Card */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.card {
    background: var(--cream);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional subtle top border gradient */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

/* Logo */
.logo {
    max-width: 240px;
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Typography */
.title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gold {
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-dark);
}

.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(199, 148, 30, 0.3), transparent);
    margin: 35px 0;
}

/* Contact Section */
.contact-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
    color: var(--text-dark);
    box-shadow: 0 10px 15px -3px rgba(199, 148, 30, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 20px -3px rgba(199, 148, 30, 0.4);
}

.btn-outline {
    background: rgba(26, 54, 93, 0.05);
    color: var(--navy);
    border: 1px solid rgba(26, 54, 93, 0.2);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card {
        padding: 40px 24px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 14px;
    }
}