/* Cool Ideas Theme - Custom Styles */

html { scroll-behavior: smooth; }

/* Offset anchors for fixed nav */
[id="why-us"],
[id="what-we-offer"],
[id="talk-to-us"],
[id="promotions"],
[id="help"] {
    scroll-margin-top: 5rem;
}

/* ===== Hero Section ===== */
.ci-hero {
    background: linear-gradient(135deg, #003366 0%, #004a8f 50%, #0062a2 100%);
    padding: 5rem 1rem;
    text-align: center;
}
.ci-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .ci-hero h1 { font-size: 3.25rem; }
}
.ci-hero .ci-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.ci-btn {
    display: inline-block;
    background: #fff;
    color: #003366;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}
.ci-btn:hover {
    background: #e8f0fe;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ci-btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    margin-left: 1rem;
}
.ci-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ===== Container ===== */
.ci-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Section Backgrounds ===== */
.ci-section-blue {
    background: linear-gradient(180deg, #004a8f 0%, #002b5c 100%);
    padding: 4.5rem 1rem;
}
.ci-section-navy {
    background: #001f42;
    padding: 4.5rem 1rem;
}
.ci-section-lightblue {
    background: linear-gradient(180deg, #0062a2 0%, #004a8f 100%);
    padding: 4.5rem 1rem;
}

/* ===== Section Titles ===== */
.ci-section-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.ci-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 3rem;
}
.ci-divider-end {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 3rem;
}

/* ===== Value Proposition Cards ===== */
.ci-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .ci-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ci-card-grid { grid-template-columns: repeat(3, 1fr); }
}
.ci-card {
    background: linear-gradient(180deg, #005a96 0%, #002b5c 100%);
    border-radius: 1rem;
    padding: 2.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ci-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.ci-card-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58a9dd;
}
.ci-card-icon svg { width: 2.25rem; height: 2.25rem; }
.ci-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.ci-card hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 1.25rem;
}
.ci-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    font-size: 0.925rem;
}

/* ===== Offer Rows ===== */
.ci-offer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 0;
}
@media (min-width: 768px) {
    .ci-offer-row { flex-direction: row; }
    .ci-offer-row-reverse { flex-direction: row-reverse; }
}
.ci-offer-img {
    flex: 0 0 40%;
    max-width: 40%;
}
.ci-offer-img img {
    width: 100%;
    border-radius: 0.75rem;
}
@media (max-width: 767px) {
    .ci-offer-img { max-width: 80%; flex: none; }
}
.ci-offer-text { flex: 1; }
.ci-offer-badge {
    display: inline-block;
    color: #58a9dd;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px solid #58a9dd;
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}
.ci-offer-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.ci-offer-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ===== Contact Cards ===== */
.ci-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .ci-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.ci-contact-card {
    background: linear-gradient(180deg, #005a96 0%, #003d6b 100%);
    border-radius: 1rem;
    padding: 2.25rem;
    text-align: center;
}
.ci-contact-badge {
    background: rgba(0,0,0,0.2);
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}
.ci-contact-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.ci-contact-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.ci-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.ci-contact-links a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    font-size: 0.925rem;
}
.ci-contact-links a:hover { color: #58a9dd; }
.ci-contact-links a svg { width: 1.15rem; height: 1.15rem; }
.ci-social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}
.ci-social-link {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(0,0,0,0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}
.ci-social-link:hover {
    background: #58a9dd;
    transform: translateY(-2px);
}
.ci-social-link svg { width: 1.25rem; height: 1.25rem; }
