:root {

    --primary-color: #1a4f9c; /* Deep Trust Blue */

    --secondary-color: #f78f1e; /* Call to Action Orange */

    --dark-color: #1e293b;

    --light-bg: #f8f9fa;

    --white: #ffffff;

    --text-color: #475569;

    --transition: all 0.3s ease;

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: 'Inter', sans-serif;

    color: var(--text-color);

    line-height: 1.6;

    background-color: var(--white);

}

a {

    text-decoration: none;

    color: inherit;

}

ul {

    list-style: none;

}

.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}

/* Typography */

h1, h2, h3, h4 {

    color: var(--dark-color);

    font-weight: 700;

}

h2 {

    font-size: 2.25rem;

    margin-bottom: 1rem;

}

p {

    margin-bottom: 1rem;

}

/* Buttons */

.btn {

    display: inline-block;

    padding: 12px 28px;

    border-radius: 6px;

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);

    text-align: center;

}

.btn-primary {

    background-color: var(--secondary-color);

    color: var(--white);

    border: 2px solid var(--secondary-color);

}

.btn-primary:hover {

    background-color: #d97706;

    border-color: #d97706;

}

.btn-outline {

    background-color: transparent;

    border: 2px solid var(--white);

    color: var(--white);

}

.btn-outline:hover {

    background-color: var(--white);

    color: var(--primary-color);

}

.btn-outline-dark {

    background-color: transparent;

    border: 2px solid var(--primary-color);

    color: var(--primary-color);

}

.btn-outline-dark:hover {

    background-color: var(--primary-color);

    color: var(--white);

}

.btn-outline-light {

    background-color: transparent;

    border: 2px solid var(--white);

    color: var(--white);

}

.btn-outline-light:hover {

    background-color: var(--white);

    color: var(--primary-color);

}

/* Navbar */

.navbar {

    background-color: var(--white);

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    position: sticky;

    top: 0;

    z-index: 1000;

    padding: 15px 0;

}

.nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--primary-color);

}

.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav-links a {

    font-weight: 500;

    color: var(--dark-color);

    transition: var(--transition);

}

.nav-links a:hover {

    color: var(--primary-color);

}

.nav-links .nav-btn {

    background-color: var(--primary-color);

    color: var(--white);

    padding: 8px 20px;

    border-radius: 4px;

}

.nav-links .nav-btn:hover {

    background-color: #12366b;

    color: var(--white);

}

.hamburger {

    display: none;

    cursor: pointer;

}

.bar {

    width: 25px;

    height: 3px;

    background-color: var(--dark-color);

    margin: 5px 0;

    transition: var(--transition);

}

/* Hero Section */

.hero {

    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;

    height: 85vh;

    display: flex;

    align-items: center;

    position: relative;

    color: var(--white);

    text-align: center;

}

.overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, rgba(26, 79, 156, 0.9) 0%, rgba(26, 79, 156, 0.7) 100%);

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

}

.badge {

    background-color: rgba(255, 255, 255, 0.2);

    padding: 6px 16px;

    border-radius: 50px;

    font-size: 0.9rem;

    font-weight: 600;

    display: inline-block;

    margin-bottom: 20px;

}

.hero h1 {

    font-size: 3.5rem;

    line-height: 1.2;

    margin-bottom: 20px;

    color: var(--white);

}

.hero p {

    font-size: 1.25rem;

    margin-bottom: 30px;

    opacity: 0.9;

}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 30px;

}

.trust-indicators {

    display: flex;

    justify-content: center;

    gap: 20px;

    font-size: 0.9rem;

    flex-wrap: wrap;

    opacity: 0.8;

}

/* Features */

.features {

    padding: 80px 0;

    background-color: var(--white);

}

.section-header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;

}

.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

}

.feature-card {

    background: var(--white);

    padding: 30px;

    border-radius: 12px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    text-align: center;

    border: 1px solid #e2e8f0;

}

.feature-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);

}

.icon-box {

    width: 60px;

    height: 60px;

    background-color: #eff6ff;

    color: var(--primary-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    margin: 0 auto 20px;

}

/* Services */

.services {

    background-color: var(--light-bg);

    padding: 80px 0;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

}

.service-card {

    background: var(--white);

    padding: 30px;

    border-radius: 12px;

    box-shadow: var(--shadow);

    transition: var(--transition);

}

.service-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);

}

.service-icon {

    font-size: 2rem;

    color: var(--primary-color);

    margin-bottom: 20px;

    background: #e0e7ff;

    width: 60px;

    height: 60px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.text-link {

    color: var(--primary-color);

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 15px;

}

.text-link:hover {

    gap: 10px;

    transition: var(--transition);

}

/* About Me */

.about {

    padding: 80px 0;

    background: var(--white);

}

.about-content {

    max-width: 800px;

    margin: 0 auto;

    text-align: center;

}

.stats {

    display: flex;

    justify-content: center;

    gap: 50px;

    margin: 30px 0;

}

.stat-item {

    display: flex;

    flex-direction: column;

}

.stat-item strong {

    font-size: 2rem;

    color: var(--primary-color);

}

/* Testimonials */

.testimonials {

    background-color: #f1f5f9;

    padding: 80px 0;

}

.reviews-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin-bottom: 40px;

}

.review-card {

    background: var(--white);

    padding: 30px;

    border-radius: 12px;

    box-shadow: var(--shadow);

}

.stars {

    color: #fbbf24;

    margin-bottom: 15px;

    font-size: 1.2rem;

}

.reviewer {

    margin-top: 20px;

    border-top: 1px solid #e2e8f0;

    padding-top: 15px;

    display: flex;

    justify-content: space-between;

    font-size: 0.9rem;

}

.cta-center {

    text-align: center;

}

/* CTA Banner */

.cta-banner {

    background: linear-gradient(135deg, #1a4f9c 0%, #12366b 100%);

    color: var(--white);

    padding: 60px 0;

    text-align: center;

}

.cta-banner h2 {

    color: var(--white);

}

.cta-banner p {

    font-size: 1.2rem;

    margin-bottom: 30px;

    opacity: 0.9;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

}

/* Contact Section */

.contact-section {

    padding: 80px 0;

    background-color: var(--white);

}

.contact-wrapper {

    display: grid;

    grid-template-columns: 1fr 1.5fr;

    gap: 50px;

    align-items: flex-start;

}

.contact-info .info-item {

    display: flex;

    gap: 15px;

    margin-bottom: 30px;

}

.contact-info i {

    font-size: 1.5rem;

    color: var(--primary-color);

    background: #eff6ff;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.contact-form {

    background: var(--light-bg);

    padding: 40px;

    border-radius: 12px;

    box-shadow: var(--shadow);

}

.form-group {

    margin-bottom: 20px;

}

.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 12px 15px;

    border: 1px solid #cbd5e1;

    border-radius: 6px;

    font-family: inherit;

    font-size: 1rem;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary-color);

    box-shadow: 0 0 0 3px rgba(26, 79, 156, 0.1);

}

/* Footer */

footer {

    background-color: var(--dark-color);

    color: #94a3b8;

    padding-top: 60px;

}

.footer-content {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 40px;

    border-bottom: 1px solid #334155;

}

.footer-brand h4, .footer-links h4, .footer-contact h4 {

    color: var(--white);

    margin-bottom: 20px;

    font-size: 1.2rem;

}

.footer-brand p {

    margin-bottom: 20px;

}

.rating-badge {

    color: #fbbf24;

    font-weight: 600;

}

.footer-links ul li, .footer-contact ul li {

    margin-bottom: 12px;

}

.footer-links a, .footer-contact a {

    transition: var(--transition);

}

.footer-links a:hover, .footer-contact a:hover {

    color: var(--white);

}

.footer-bottom {

    text-align: center;

    padding: 20px 0;

    font-size: 0.9rem;

}

/* Floating WhatsApp */

.float-wa {

    position: fixed;

    width: 60px;

    height: 60px;

    bottom: 30px;

    right: 30px;

    background-color: #25d366;

    color: #FFF;

    border-radius: 50px;

    text-align: center;

    font-size: 30px;

    box-shadow: 2px 2px 3px #999;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}

.float-wa:hover {

    background-color: #1ebc57;

    transform: scale(1.1);

}

/* Mobile Responsiveness */

@media (max-width: 992px) {

    .hero h1 { font-size: 2.8rem; }

}

@media (max-width: 768px) {

    .hamburger { display: block; }

    

    .nav-links {

        position: fixed;

        left: -100%;

        top: 70px;

        gap: 0;

        flex-direction: column;

        background-color: var(--white);

        width: 100%;

        text-align: center;

        transition: 0.3s;

        box-shadow: 0 10px 10px rgba(0,0,0,0.1);

    }

    .nav-links.active { left: 0; }

    .nav-links li { margin: 16px 0; }

    .hero h1 { font-size: 2.2rem; }

    

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    .footer-content {

        grid-template-columns: 1fr;

    }

}

