/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #1a6eb5;
    --secondary-color: #155a96;
    --accent-color: #e8521a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f0f6fc;
    --white: #ffffff;
    --coral: #e8521a;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Top Bar ── */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.top-bar-info a,
.top-bar-info span {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar-info a:hover { opacity: 0.8; }

/* ── Navbar ── */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-img { height: 55px; width: auto; display: block; }

.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--primary-color); }

.nav-social { display: flex; align-items: center; gap: 0.6rem; }
.nav-social a {
    width: 34px; height: 34px;
    background: var(--primary-color);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-social a:hover { background: var(--accent-color); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 25px; height: 3px; background: var(--text-dark); transition: all 0.3s; }

/* ── Buttons ── */
.btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary { background: var(--white); color: var(--primary-color); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary-color); }

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--coral);
    color: var(--white);
    padding: 13px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-learn-more:hover {
    background: #e85555;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p  { font-size: 1.1rem; opacity: 0.9; }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 90px;
    text-align: center;
}
.hero-title       { font-size: 3rem; margin-bottom: 1rem; }
.hero-subtitle    { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.95; }
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.section-header p  { font-size: 1.05rem; color: var(--text-light); }

/* ── Coral Label ── */
.about-label {
    color: var(--coral);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Better Solution ── */
.better-solution { padding: 80px 0; background: var(--white); }
.better-solution h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 1.2rem; }
.better-solution p  { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; max-width: 750px; }

/* ── About Home ── */
.about-home { padding: 60px 0; background: var(--bg-light); }
.about-home p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    max-width: 900px;
    margin-top: 0.5rem;
}

/* ── Services (Home) ── */
.services { padding: 80px 0; background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
}
.service-icon i { font-size: 1.8rem; color: var(--white); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--text-dark); }
.service-card p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ── Why Choose Us (Home) ── */
.why-section { padding: 80px 0; background: var(--bg-light); }
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-5px); }
.why-card i  { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; display: block; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--text-dark); }
.why-card p  { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }

/* ── CTA ── */
.contact-cta,
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}
.contact-cta h2,
.cta-content h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-cta p,
.cta-content p  { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }
.contact-cta .btn,
.cta-content .btn { background: var(--white); color: var(--primary-color); }
.contact-cta .btn:hover,
.cta-content .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── About Page ── */
.about-page { padding: 70px 0; }
.about-text-only { max-width: 860px; }
.about-text-only h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 1.2rem; }
.about-text-only > p { color: var(--text-light); line-height: 1.9; margin-bottom: 1.5rem; }
.about-text-only h3 { font-size: 1.5rem; color: var(--text-dark); margin: 2rem 0 0.8rem; }
.about-text-only h3 + p { color: var(--text-light); line-height: 1.9; }

/* ── Why Choose (About) ── */
.why-choose { padding: 70px 0; background: var(--bg-light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.why-item { text-align: center; padding: 1.5rem; }
.why-item i  { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; display: block; }
.why-item h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--text-dark); }
.why-item p  { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }

/* ── Services Page ── */
.services-detail { padding: 70px 0; background: var(--bg-light); }
.services-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-col-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.service-col-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-col-card i  { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 1rem; display: block; }
.service-col-card h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.8rem; }
.service-col-card p  { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

/* ── Contact Page ── */
.contact-page { padding: 70px 0; background: var(--white); }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: flex-start;
}
.contact-info .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info .contact-info-item i {
    font-size: 1.4rem;
    color: var(--coral);
    margin-top: 0.2rem;
    min-width: 22px;
}
.contact-info .contact-info-item h4 { color: var(--text-dark); margin-bottom: 0.3rem; font-size: 1rem; }
.contact-info .contact-info-item p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a {
    width: 38px; height: 38px;
    background: var(--primary-color);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover { background: var(--accent-color); transform: translateY(-3px); }

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}
.contact-form-wrapper h2 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ── Footer ── */
.footer { background: var(--secondary-color); color: var(--white); padding: 1.5rem 0; text-align: center; }
.footer p { color: #94a3b8; font-size: 0.9rem; }
.footer-bottom p { color: #94a3b8; font-size: 0.9rem; }

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 75%;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .nav-social { display: none; }

    .hero { padding: 80px 0 60px; }
    .hero-title    { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-buttons  { flex-direction: column; align-items: center; }

    .contact-wrapper  { grid-template-columns: 1fr; gap: 2rem; }
    .services-columns { grid-template-columns: 1fr; }
    .why-grid         { grid-template-columns: 1fr; }
    .page-header h1   { font-size: 1.8rem; }

    .top-bar-info { flex-direction: column; gap: 0.3rem; font-size: 0.78rem; }
    .top-bar .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .logo-img   { height: 40px; }
}

/* ── Honeypot (hidden from real users) ── */
.honeypot-field {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/* About label as clickable link */
a.about-label {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}
a.about-label:hover {
    text-decoration: underline;
    opacity: 0.85;
}
