/* assets/css/style.css */
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #1e3a8a;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid #e2e8f0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.main-nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s;
    font-size: 1rem;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary);
}

.btn-small {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-image {
    flex: 1;
    text-align: center;
    font-size: 8rem;
    color: var(--primary);
    position: relative;
}

.hero-image i:first-child {
    animation: bounce 3s infinite;
    display: inline-block;
}

.hero-image i:last-child {
    font-size: 6rem;
    margin-left: -30px;
    opacity: 0.7;
}

@keyframes bounce {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-15px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: white;
}

.question-mark {
    background: var(--primary);
    color: white;
    display: inline-block;
    width: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 24px;
    transition: all 0.3s;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.payment-methods {
    text-align: center;
    background: #fff8f0;
    padding: 30px;
    border-radius: 30px;
    margin-top: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 500;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 6px;
    vertical-align: middle;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background: linear-gradient(120deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.quote-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 36px;
    padding: 40px;
}

.quote-info {
    flex: 1;
}

.quote-info h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.contact-details {
    margin: 25px 0;
}

.contact-details div {
    margin: 12px 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.trust-note {
    background: var(--primary);
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    margin-top: 20px;
}

.quote-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 28px;
    color: var(--dark);
}

.quote-form h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    font-family: inherit;
    transition: 0.2s;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}

.quote-form button {
    width: 100%;
    cursor: pointer;
}

/* Note Section */
.note-section {
    background: #fff9f0;
    padding: 20px 0;
    border-top: 1px solid #ffedd5;
}

.note-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #b45309;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--primary);
    margin-right: 8px;
}

.footer-about p {
    margin: 15px 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #cbd5e1;
    background: #1e293b;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact i {
    width: 28px;
    color: var(--primary);
}

.payment-icons-footer {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
    margin: 15px 0;
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #1e293b;
    gap: 15px;
}

.footer-badge span {
    background: #1e293b;
    padding: 5px 12px;
    border-radius: 30px;
    margin-left: 10px;
}

.disclaimer {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: start;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        z-index: 999;
        border-radius: 0 20px 20px 0;
    }
    .main-nav.active {
        left: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    .nav-cta {
        margin-top: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-rating {
        margin: 0 auto;
    }
    .quote-wrapper {
        padding: 25px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .service-card {
        padding: 20px;
    }
    .payment-icons {
        gap: 15px;
        font-size: 0.9rem;
    }
    .quote-form {
        padding: 20px;
    }
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #f97316 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: #fff;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 25px 0 15px 0;
}

.content-section .info-block {
    margin-bottom: 30px;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--dark);
}

.content-section ul {
    margin: 20px 0 20px 30px;
    list-style: disc;
}

.content-section ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.content-section .intro-text p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    background: #f0f9ff;
    padding: 20px;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    .content-section h2 {
        font-size: 1.5rem;
    }
    .content-section h3 {
        font-size: 1.2rem;
    }
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 24px;
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
}

.cta-box .btn-primary:hover {
    background: var(--secondary);
    color: white;
}

/* Contact Page Layout */
.contact-page-section {
    padding: 60px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Cards */
.contact-directory h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-directory > p {
    margin-bottom: 30px;
    color: var(--gray);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateX(5px);
}

.contact-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card i {
    width: 25px;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--primary);
}

/* Contact Form Side */
.contact-form-side {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-side h2 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-form-side p {
    color: var(--gray);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}

.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cta-box h3 {
        font-size: 1.4rem;
    }
    .contact-card h3 {
        font-size: 1.2rem;
    }
}

/* Partner list in footer */
.footer-links .partner-list {
    list-style: none;
    padding: 0;
}

.footer-links .partner-list li {
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.5;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 12px;
}

.footer-links .partner-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-links .partner-list i {
    color: var(--primary);
    margin-right: 8px;
}

.footer-links .partner-list a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links .partner-list a:hover {
    color: var(--primary);
}

/* Alert messages for contact form */
.alert-success {
    background: #10b981;
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-error {
    background: #ef4444;
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

/* Top Contact Bar */
.top-contact-bar {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #2d4a9e;
}

.top-contacts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.top-contacts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-contacts i {
    color: #f97316;
    font-size: 0.75rem;
}

.top-contacts a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.top-contacts a:hover {
    color: #f97316;
}

/* Responsive: stack contacts on mobile */
@media (max-width: 992px) {
    .top-contacts {
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .top-contacts {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .top-contact-bar {
        padding: 10px 0;
    }
    .top-contacts span {
        white-space: normal;
    }
}