/* newstyles.css */
:root {
    --navy: #1a2a44;
    --light-blue: #007bff; 
    --orange: #ff6600;
    --white: #ffffff;
    --text-color: #333;
    --light-grey: #f4f4f4;
}

body {
    font-family: Arial, Helvetica, sans-serif; /* A clean, common sans-serif font */
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    /* Exactly replicates the blue gradient background from the image */
    background: linear-gradient(135deg, #07386d 0%, #007bff 100%);
    padding: 0;
}

.container {
    max-width: 950px;
    margin: 40px auto;
    background: var(--white);
    padding: 0; /* Content padding is inside sections */
    border-radius: 8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

header {
    background-color: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-small {
    width: 20px; /* Small icon size in header */
    margin-right: 8px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9em;
}

/* Hero Section (Blue Background Part of the Index Page) */
.hero-section {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2em;
    margin: 0 0 10px;
    color: var(--white);
}

.hero-text p {
    font-size: 0.8em;
    line-height: 1.4;
    max-width: 300px;
    color: #cceeff;
}

.main-logo {
    width: 150px; /* The large 'UT' logo */
    height: auto;
}

/* Orange Buttons */
.btn-orange {
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
    margin-top: 15px;
    font-size: 0.8em;
}

/* Feature Grid Section (White background part) */
.feature-grid-section {
    padding: 30px 40px;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item h3 {
    color: var(--navy);
    font-size: 1em;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.75em;
    line-height: 1.3;
    color: #666;
}
/* Hero Text Enhancements */
.orange-text { color: #ff6600; }
.hero-btns { display: flex; gap: 15px; margin-top: 20px; }
.btn-white-outline { 
    border: 2px solid white; color: white; padding: 12px 25px; 
    text-decoration: none; border-radius: 5px; font-weight: bold; 
}

/* Brand Strip */
.brand-strip {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    border-radius: 0 0 8px 8px;
}

/* Ensure feature grid items look like cards */
.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
@media (max-width: 600px) {
    .form-row { 
        flex-direction: column; 
        gap: 15px; 
    }
}
.bundle-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.bundle-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bundle-card.featured {
    border: 2px solid #ff6600;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.1);
}

.bundle-badge {
    font-size: 0.7rem;
    background: #001f3f;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.bundle-price {
    font-size: 2rem;
    font-weight: bold;
    color: #001f3f;
    margin: 15px 0;
}

.per-unit { font-size: 0.9rem; color: #666; font-weight: normal; }

.includes-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-size: 0.9rem;
}

.includes-section li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.tag-row { margin-top: auto; padding-top: 15px; }
.tag { font-size: 0.75rem; color: #ff6600; margin-right: 8px; font-weight: bold; }
/* Styling for the JSON-rendered Bundle Cards */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 30px;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--navy);
    margin: 10px 0;
}

.price-tag span {
    font-size: 1rem;
    color: #888;
    font-weight: normal;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1; /* Pushes buttons to the bottom of the card */
}

.includes-list li {
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-grey);
    color: #555;
    display: flex;
    align-items: flex-start;
}

.includes-list li::before {
    content: "✓";
    color: var(--orange);
    margin-right: 10px;
    font-weight: bold;
}
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-pdf {
    background-color: var(--light-grey);
    color: var(--navy);
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    flex: 1;
    font-size: 0.8rem;
    transition: 0.2s;
}

.btn-pdf:hover { background-color: #e0e0e0; }

/* Re-using your existing btn-orange for the order button */
.card-actions .btn-orange {
    margin-top: 0; /* Remove top margin for alignment */
    flex: 1.5;
    text-align: center;
}
/* latest update start */
@media (max-width: 768px) {
    .container {
        margin: 10px; /* Reduces outside margin on phones */
        width: auto;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        max-width: 100%;
    }

    .main-logo {
        width: 100px;
        margin-top: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr; /* Stack features vertically */
    }

    .card-actions {
        flex-direction: column; /* Stack PDF and Order buttons on small phones */
    }
}
/* latest update end */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: var(--white);
    background-color: var(--navy);
}
