/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6b35;
    --dark-orange: #e85d04;
    --light-orange: #ff8c61;
    --gold: #ffa726;
    --amber: #ffb74d;
    --yellow: #ffd54f;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ffa726 50%, #ffb74d 100%);
    --gradient-secondary: linear-gradient(135deg, #e85d04 0%, #ff6b35 100%);
    --gradient-accent: linear-gradient(135deg, #ff8c61 0%, #ffd54f 100%);
    --text-dark: #2c3e50;
    --text-light: #5d6d7e;
    --bg-light: #fef9f6;
    --bg-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

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

/* Notification Bar */
.notification-bar {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.notification-content i {
    font-size: 1rem;
}

.notification-link {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.notification-link:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-contact-info a:hover {
    color: var(--primary-orange);
}

.header-social {
    display: flex;
    gap: 0.75rem;
}

.header-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-social a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-circle {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.nav-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 50%, #fff0e6 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 167, 38, 0.15) 0%, transparent 50%);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.hero-heading {
    font-family: 'Nunito', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.btn-secondary-large {
    background: white;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary-large:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-item {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    animation: visual-float 8s ease-in-out infinite;
    cursor: pointer;
}

.visual-item:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.visual-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-item p {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.item-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.item-2 {
    top: 50%;
    right: 10%;
    animation-delay: -2s;
}

.item-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

.item-4 {
    top: 20%;
    right: 30%;
    animation-delay: -1s;
}

@keyframes visual-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-title-area {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-card.featured-service {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-service::before {
    display: none;
}

.featured-service h3,
.featured-service p,
.featured-service .service-features li {
    color: white;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-service .service-icon {
    background: rgba(255, 255, 255, 0.25);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.featured-service .service-icon i {
    color: white;
}

.service-number {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.2);
    line-height: 1;
}

.featured-service .service-number {
    color: rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-features li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.featured-service .service-features li i {
    color: white;
}

.service-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.3s ease;
    cursor: pointer;
}

.service-action:hover {
    gap: 1rem;
}

.featured-service .service-action {
    color: white;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef9f6 0%, #fff5f0 100%);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.process-step h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-connector {
    flex: 0 0 40px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 40px;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-area {
    position: relative;
    height: 500px;
}

.image-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 24px;
    overflow: hidden;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.image-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.about-paragraph {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.highlight-text p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-section {
    max-width: 100%;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-list,
.footer-contact-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    opacity: 1;
}

.footer-list a:hover {
    color: var(--light-orange);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #94a3b8;
}

.footer-contact-list i {
    color: var(--primary-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    cursor: pointer;
}

.footer-contact-list a:hover {
    color: var(--light-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #94a3b8;
}

.footer-policy {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-policy a {
    color: #94a3b8;
    text-decoration: none;
    cursor: pointer;
}

.footer-policy a:hover {
    color: white;
}

.footer-policy span {
    color: #475569;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-items {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-section {
        grid-template-columns: 1fr 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-connector {
        display: none;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .notification-content {
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1.5rem;
    }
}


