/* Generated by BrandingProfessional — SEO Optimized */
:root {
    --color-primary: #1a2b5f;
    --color-secondary: #2a4494;
    --color-accent: #e8811a;
    --color-text: #222222;
    --color-text-light: #555555;
    --color-background: #ffffff;
    --color-surface: #f5f7fb;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
    background: var(--color-primary);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header .logo img { max-height: 50px; width: auto; }
.header nav { display: flex; align-items: center; }
.header nav a { color: white; margin-left: 22px; font-weight: 500; font-size: 0.95rem; }
.header nav a:hover { opacity: 0.8; text-decoration: none; }

/* Hero */
.hero {
    color: white;
    padding: 35px 0 30px;
    text-align: center;
}
.hero-logo { margin-bottom: 15px; }
.hero-logo img { max-width: 320px; width: 100%; height: auto; }
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.hero-divider { color: var(--color-accent); font-size: 1.2rem; }
.hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    font-weight: 600;
    font-size: 1.05rem;
}
.hero-contact-item {
    color: white;
    transition: color 0.2s;
}
.hero-contact-item:hover { color: #ffc107; text-decoration: none; }
.hero-contact-item i {
    color: #ffc107;
    margin-right: 6px;
    font-size: 1.2rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--color-accent);
    color: white;
    padding: 16px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.trust-item i {
    font-size: 1.1rem;
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); text-decoration: none; background: #d4740f; color: white; }

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--color-surface); }
.section h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; font-weight: 700; }

/* Service Icon */
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Services Grid */
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.services-grid > .service-card { flex: 0 1 calc(33.333% - 20px); min-width: 280px; }
.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.6; }

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.items-grid ul {
    list-style: none;
    padding: 0;
}
.items-grid li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    color: var(--color-text);
    font-size: 1rem;
}
.items-grid li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.85rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    background: white;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.gallery-item-featured img {
    height: 350px;
}
.gallery-item figcaption {
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.testimonial-card .stars { color: #f4b400; margin-bottom: 10px; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-style: italic; color: var(--color-text-light); line-height: 1.7; border: none; margin: 0; padding: 0; }
.testimonial-card .author { font-weight: 600; margin-top: 14px; color: var(--color-primary); font-style: normal; }
.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 14px; }
.testimonial-header .author { margin-top: 0; margin-bottom: 2px; font-size: 1.05rem; }
.testimonial-header .stars { margin-bottom: 0; }
.testimonial-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
    flex-shrink: 0;
}
.testimonial-featured {
    border-left-width: 5px;
    background: #fffbf5;
}

/* About Badge */
.about-badge-row {
    text-align: center;
    margin-top: 30px;
}
.about-badge {
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--color-accent);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary h3 {
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
    color: var(--color-primary);
}
.faq-item summary:hover h3 { color: var(--color-accent); }
.faq-item p {
    padding: 0 25px 20px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px; margin-bottom: 15px; border: 1px solid #ddd;
    border-radius: 6px; font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 129, 26, 0.15);
}
.contact-form textarea { height: 150px; resize: vertical; }
.contact-info p { margin-bottom: 18px; line-height: 1.8; }
.contact-info a { color: var(--color-accent); font-weight: 500; }

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: white; text-decoration: none; }
.footer-social { display: flex; justify-content: center; gap: 15px; margin-top: 15px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: white;
    font-size: 1.1rem; transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--color-accent); transform: scale(1.1); text-decoration: none; }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .header .container { position: relative; }
    .header nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary);
        padding: 15px 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        z-index: 99;
    }
    .header nav.nav-open { display: flex; }
    .header nav a {
        margin-left: 0;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .header nav a:last-child { border-bottom: none; }
    .header nav .btn-cta { margin-left: 0; margin-top: 10px; text-align: center; }
    .hero { padding: 40px 0 35px; }
    .hero h1 { font-size: 2rem; letter-spacing: 2px; }
    .hero-logo img { max-width: 260px; }
    .hero-tagline { font-size: 0.8rem; gap: 5px; }
    .hero-contact { flex-direction: column; gap: 15px; font-size: 0.95rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .trust-items { gap: 15px; }
    .trust-item { font-size: 0.85rem; }
    .items-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img { height: 220px; }
    .gallery-item-featured img { height: 260px; }
    .section { padding: 50px 0; }
    .section h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.4rem; letter-spacing: 1px; }
    .btn-cta { padding: 12px 24px; font-size: 1rem; }
    .services-grid > .service-card { flex: 0 1 100%; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img, .gallery-item-featured img { height: 250px; }
    .trust-items { flex-direction: column; gap: 8px; }
}
