/* =========================
   GLOBAL
========================= */

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

ul {
    padding-left: 20px;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 72px;
}

.main-nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
}

/* =========================
   HERO
========================= */

.hero {
    background: #111;
    color: #fff;
    padding: 70px 20px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    max-width: 520px;
}

.hero-text h1 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 22px;
}

.cta-button {
    display: inline-block;
    padding: 14px 60px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-1px);
}

.hero-image img {
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
}
 /* HERO – Learn More button (grey for better visibility) */
.hero .cta-button {
    background: #bfbfb8;   /* soft professional grey */
    color: #000;
}

.hero .cta-button:hover {
    background: #a9a9a2;
}


/* =========================
   HOME CTA (FULL WIDTH)
========================= */

.home-cta-full {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0 20px;
}

/* =========================
   ABOUT / SERVICES
========================= */

.about-section {
    background: #d9d9d4;
    padding: 45px 0 60px;
}

.about-title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 12px;
}

.service-card img {
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.service-card ul {
    flex-grow: 1;
}

.service-card ul li {
    margin-bottom: 6px;
}

.card-footer,
.service-note {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-section {
    background: #d9d9d4;
    padding: 60px 20px 45px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.contact-text p {
    font-size: 17px;
    margin-bottom: 24px;
}

.contact-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.at-icon {
    color: #1f6fdc;
    font-weight: 700;
    font-size: 20px;
}

.contact-item a {
    color: #000;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-image img {
    height: 340px;
    object-fit: cover;
    border-radius: 6px;
}

/* =========================
   FOOTER
========================= */

.site-footer-dark {
    background: #111;
    color: #fff;
    padding: 50px 20px 30px;
}

.footer-inner-dark {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: #fff;
    margin: 0 12px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.85;
    text-decoration: none;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 30px;
}

.footer-bottom {
    font-size: 12px;
    color: #aaa;
}

/* =========================
   MOBILE (RESPONSIVE)
========================= */

@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        gap: 14px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-top: 1px solid #e6e6e6;
        margin-top: 12px;
    }

    .nav-links a {
        padding: 14px 0;
        text-align: center;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        height: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    h2,
    h3 {
        text-align: center;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-image img {
        height: 260px;
    }
}
