:root {
    --dark: #0d1b2a;
    --mid: #1b263b;
    --accent: #f7a400;
    --accent-dark: #d68100;
    --light: #f7f7f7;
    --muted: #8892b0;
    --white: #ffffff;
    --shadow: 0 15px 40px rgba(13, 27, 42, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.9);
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 32px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s ease;
}

nav ul li a:hover,
nav ul li a:focus {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.85)),
        url('Banner.png') center/cover;
    color: var(--white);
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content {
    max-width: 720px;
    margin-top: 4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Main layout */
main {
    margin-top: 80px;
}

section {
    padding: 4.5rem 1.5rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--muted);
    margin-bottom: 2.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 1.8rem;
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s ease;
    min-height: 330px;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    width: 110px;
    height: 110px;
    margin: 1.5rem auto 1rem;
    border-radius: 20px;
    background: rgba(247, 164, 0, 0.15);
    display: grid;
    place-items: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transform: translateY(-40px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Testimonials Section */
.testimonials {
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 1.2rem;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.testimonial-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.testimonial-stars {
    font-size: 1.1rem;
    color: var(--accent);
    white-space: nowrap;
}

.testimonial-body {
    font-size: 1rem;
}

.testimonial-reply {
    font-size: 0.95rem;
    color: var(--muted);
    border-left: 3px solid var(--accent);
    padding-left: 0.8rem;
}

/* Pricing Section */
.pricing {
    background: var(--mid);
    color: var(--white);
    text-align: center;
}

.pricing-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(13, 27, 42, 0.5);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    color: #dbe2ef;
}

.pricing-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.6rem;
}

.pricing-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--accent);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin-bottom: 0.8rem;
}

.info-list {
    list-style: none;
    margin: 1rem 0;
}

.info-list li {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

input,
textarea {
    padding: 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid #d5d9e9;
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.map-wrapper iframe {
    width: 100%;
    min-height: 280px;
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    font-size: 1.5rem;
    z-index: 1000;
    transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
}

.floating-whatsapp img {
    width: 28px;
    height: 28px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 70px;
        right: 1.5rem;
        background: rgba(13, 27, 42, 0.95);
        flex-direction: column;
        padding: 1.2rem;
        border-radius: 0.8rem;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
