/* =====================
   GstGuardians Styles
   ===================== */
:root {
    --primary: #0F286F;
    --accent: #7FD9F9;
    --bg: #F7F9FC;
    --text: #222;
    --white: #fff;
    --radius: 6px;
    --shadow: 0 2px 8px rgba(15,40,111,0.08);
    --font-heading: 'Poppins', 'Montserrat', Arial, sans-serif;
    --font-body: 'Montserrat', Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
}

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}
.logo-nav {
    display: flex;
    align-items: center;
}
.logo {
    height: 48px;
    margin-right: 1.5rem;
}
.nav {
    display: flex;
    gap: 1.2rem;
    font-weight: 500;
}
.nav a {
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.nav a:hover, .dropdown:hover .dropbtn {
    background: var(--accent);
}
.dropdown {
    position: relative;
}
.dropbtn {
    background: none;
    border: none;
    color: var(--primary);
    font: inherit;
    cursor: pointer;
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius);
}
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    top: 110%;
    left: 0;
    z-index: 10;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius);
}
.dropdown-content a:hover {
    background: var(--accent);
}
.contact-icons {
    display: flex;
    gap: 1rem;
}
.contact-icons img {
    width: 28px;
    height: 28px;
}

.hero {
    background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);
    color: var(--white);
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
}
.btn-accent {
    background: var(--accent);
    color: var(--primary);
}
.btn:hover, .btn-accent:hover {
    background: var(--primary);
    color: var(--white);
}

.services {
    padding: 3rem 2rem 2rem 2rem;
    background: var(--bg);
    text-align: center;
}
.services h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-items: center;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0.5rem 0 0.7rem 0;
}
.service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.2s;
}
.learn-more:hover {
    color: var(--accent);
}

.about-preview {
    background: var(--white);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.about-text {
    flex: 1;
    min-width: 220px;
}
.about-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.trust-points {
    background: var(--bg);
    padding: 2rem 2rem 1.5rem 2rem;
}
.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.2rem 2rem;
    min-width: 180px;
    text-align: center;
}
.trust-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary);
    font-family: var(--font-heading);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 1.5rem;
}
.footer-links {
    display: flex;
    gap: 1.2rem;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.2s;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-contact {
    display: flex;
    gap: 1rem;
}
.footer-contact img {
    width: 28px;
    height: 28px;
}
.footer-copy {
    font-size: 0.95rem;
    margin-top: 0.7rem;
    flex-basis: 100%;
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: var(--shadow);
    padding: 0.7rem;
    z-index: 200;
    transition: background 0.2s;
}
.floating-whatsapp img {
    width: 36px;
    height: 36px;
}
.floating-whatsapp:hover {
    background: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content, .about-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-content {
        align-items: center;
    }
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.7rem 1rem;
    }
    .logo {
        height: 40px;
        margin-bottom: 0.5rem;
    }
    .nav {
        gap: 0.7rem;
    }
    .services {
        padding: 2rem 1rem 1rem 1rem;
    }
    .about-preview {
        padding: 2rem 1rem;
    }
    .trust-points {
        padding: 1.2rem 1rem 1rem 1rem;
    }
    .footer {
        padding: 1.2rem 1rem 0.7rem 1rem;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .trust-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
