/* =========================
   GLOBAL THEME — Modern SaaS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Logo */
.logo img {
    height: 70px; /* adjust if needed */
    width: auto;
    object-fit: contain;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    font-size: 16.5px;
    color: #333;
    font-weight: 500;
    transition: 0.25s;
}

nav a:hover,
nav a.active {
    color: #0070f3;
}

/* =========================
   HOME — HERO SECTION
========================= */
.enhanced-hero {
    text-align: center;
    padding: 150px 20px 100px;
    max-width: 1100px;
    margin: auto;
}

.enhanced-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.tagline {
    font-size: 25px;
    opacity: 0.85;
    margin-bottom: 18px;
}

.sub {
    font-size: 18px;
    opacity: 0.75;
    max-width: 900px;
    margin: auto;
}

.proud-box {
    margin-top: 35px;
    padding: 20px;
    background: #f7f9ff;
    border-left: 4px solid #0070f3;
    border-radius: 12px;
    font-size: 17px;
    opacity: 0.95;
}

/* =========================
   HOME — DETAILS SECTION
========================= */
.details-section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: auto;
}

.details-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-card {
    padding: 25px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: 0.25s ease;
}

.detail-card:hover {
    transform: translateY(-6px);
    border-color: #0070f3;
}

/* =========================
   HOME — SERVICES PREVIEW
========================= */
.services-preview {
    text-align: center;
    padding: 80px 40px;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-box {
    padding: 25px;
    border-radius: 14px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s;
}

.service-box:hover {
    background: #ffffff;
    border-color: #0070f3;
    transform: translateY(-6px);
}

/* CTA button */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #0070f3;
    color: #fff;
    font-size: 17px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.btn:hover {
    opacity: 0.85;
}

/* =========================
   HOME — PROUD SECTION
========================= */
.proud-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.proud-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.proud-section p {
    font-size: 18px;
    opacity: 0.8;
}

/* =========================
   SERVICES PAGE — Modern SaaS
========================= */

/* Hero */
.modern-hero {
    text-align: center;
    padding: 110px 20px 50px;
    max-width: 900px;
    margin: auto;
}

.modern-hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.hero-sub {
    font-size: 20px;
    opacity: 0.7;
}

/* Modern service grid */
.services-section-modern {
    padding: 60px 20px;
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-modern {
    background: #ffffff;
    padding: 32px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: #0070f3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-card-modern h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* CTA */
.contact-cta-modern {
    text-align: center;
    padding: 80px 30px;
    background: #f7faff;
    border-top: 1px solid #e6e6e6;
}

.contact-cta-modern h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* =========================
   CONTACT PAGE — Stripe-style Modern Form
========================= */
.page-hero {
    text-align: center;
    padding: 100px 20px 40px;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Modern centered layout */
.contact-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Modern form card */
.contact-form {
    width: 380px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0070f3;
}

.contact-form button {
    margin-top: 10px;
    padding: 14px;
    background: #0070f3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.25s;
}

.contact-form button:hover {
    opacity: 0.85;
}

/* Contact Note */
.contact-note {
    max-width: 380px;
    font-size: 16px;
    opacity: 0.7;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 45px;
    opacity: 0.6;
    font-size: 14px;
}
