@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

:root {
    --orange: #FF6B35;
    --navy: #0A1128;
    --bg: #ffffff;
    --card-bg: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg); 
    color: var(--navy);
    line-height: 1.4;
}

/* Reduced width and forced edge padding to prevent bulging */
.container { 
    width: 100%; 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 0 25px; 
}

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 25px; }
.logo { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; }
.logo span { color: var(--orange); }
.nav-cta { font-size: 0.8rem; color: var(--orange); text-decoration: none; font-weight: 600; border: 1px solid var(--orange); padding: 5px 12px; border-radius: 4px; }
.nav-cta-book { font-size: 0.8rem; color: var(--); text-decoration: none; font-weight: 600; background: var(--orange); padding: 8px 16px; border-radius: 4px; --angle: 0deg; display: inline-block; text-decoration: none; color: white; border: 2px solid transparent; border-radius: 6px;
    background: 
        linear-gradient(var(--orange), var(--orange)) padding-box, 
        conic-gradient(from var(--angle), transparent 75%, var(--navy)) border-box; 
    animation: rotate-line 6s linear infinite;
}

/* Hero */
.hero { padding: 30px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 25px; align-items: center; }
.hero-text h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px; }
.highlight { color: var(--orange); }
.hero-text p { font-size: 0.9rem; margin-bottom: 15px; opacity: 0.85; max-width: 320px; text-align: justify; font-weight: 400; }
.hero-image img { width: 100%; max-width: 320px; border-radius: 12px; }

/* SMALL GLOW BUTTON */
.seamless-btn {
    --angle: 0deg;
    display: inline-block;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    border: 2px solid transparent;
    border-radius: 6px;
    background: 
        linear-gradient(var(--orange), var(--orange)) padding-box, 
        conic-gradient(from var(--angle), transparent 80%, var(--navy)) border-box; 
    animation: rotate-line 3s linear infinite;
}

@keyframes rotate-line { to { --angle: 360deg; } }

/* Form Section */
.form-card { background: var(--card-bg); padding: 25px; border-radius: 12px; margin-bottom: 40px; }
.form-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; margin-bottom: 20px; text-align: center; }
form { display: flex; flex-direction: column; gap: 10px; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
input, select, textarea { 
    padding: 10px; 
    border: 1px solid #e0e0e0; 
    border-radius: 6px; 
    font-size: 0.85rem; 
    font-family: inherit;
}

.submit-btn { 
    background: var(--navy); 
    color: black; 
    border: none; 
    padding: 12px; 
    border-radius: 6px; 
    font-weight: 700; 
    font-size: 0.9rem;
    cursor: pointer;
}

/* Mobile Fixes */
@media (max-width: 600px) {
    /* Mobile Fixes - Clean & Professional */
@media (max-width: 600px) {
    .navbar { 
        flex-direction: column; 
        gap: 10px; 
        padding: 1rem 15px;
    }

    .logo { 
        font-size: 1.2rem; 
        text-align: center; 
    }

    /* Fixing the squished buttons in the header */
    .nav-links {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-cta, .nav-cta-book { 
        font-size: 0.7rem; 
        padding: 6px 10px; 
    }

    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .hero-image { 
        order: -1; /* Puts image above text on phone */
        margin: 0 auto 20px; 
    }

    .hero-image img { 
        width: 100%; 
        height: auto; /* Fixed: This prevents the image from stretching to 500px */
        max-width: 280px; 
    }

    .hero-text p { 
        margin: 0 auto 20px; 
        text-align: center; /* Center text for mobile for better flow */
    }

    .input-row { 
        grid-template-columns: 1fr; 
    }
}