@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #101042;       /* Corporate deep navy from logo */
    --primary-light: #1c1c69;
    --primary-rgb: 16, 16, 66;
    --accent: #FF6E01;        /* Premium corporate orange from logo */
    --accent-hover: #e05e00;
    --accent-rgb: 255, 110, 1;
    --secondary: #2563eb;     /* Professional blue */
    --text-dark: #101042;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgba(16, 16, 66, 0.08), 0 8px 10px -6px rgba(16, 16, 66, 0.08);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.top-bar {
    background-color: var(--primary);
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}
.top-bar a:hover {
    color: var(--accent);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.brand-logo {
    height: 50px !important;
    transition: var(--transition);
}
@media (min-width: 992px) {
    .navbar.scrolled {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar.scrolled .brand-logo {
        height: 40px !important;
    }
}
.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}

/* Custom Buttons */
.btn-premium {
    background-color: var(--accent);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.2), 0 2px 4px -2px rgba(234, 88, 12, 0.2);
}
.btn-premium:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3), 0 4px 6px -4px rgba(234, 88, 12, 0.3);
}

.btn-outline-premium {
    border: 2px solid var(--primary);
    background-color: transparent;
    color: var(--primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-outline-premium:hover {
    background-color: var(--primary);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    font-size: 32px;
    transition: var(--transition);
    text-decoration: none !important;
}
.floating-whatsapp:hover, .floating-whatsapp:focus, .floating-whatsapp:active {
    transform: scale(1.1) rotate(10deg);
    color: white;
    text-decoration: none !important;
}

/* Mobile-only Floating Call Button */
.floating-call {
    display: none;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .floating-call {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        background-color: var(--accent); /* Premium corporate orange from logo */
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        font-size: 22px;
        transition: var(--transition);
        text-decoration: none !important;
    }
    .floating-call:hover, .floating-call:focus, .floating-call:active {
        transform: scale(1.1) rotate(-10deg);
        color: white;
        text-decoration: none !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/hero-bg.webp') center center/cover no-repeat;
    padding: 140px 0 100px 0;
    color: white;
    overflow: hidden;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
}
.hero-section p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
}
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(234, 88, 12, 0.3);
    border-radius: 12px;
    z-index: -1;
}
.hero-image-wrapper img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Quick Quote Form */
.quote-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    color: white;
}
.quote-card h3 {
    color: white;
    font-weight: 700;
}
.quote-card .form-control, .quote-card .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--text-dark);
}
.quote-card .form-control:focus, .quote-card .form-select:focus {
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.4);
    border-color: var(--accent);
}

/* Sections Styling */
.section-padding {
    padding: 90px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title span {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Service Card */
.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background-color: var(--accent);
    color: white;
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.service-link {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.service-link:hover {
    color: var(--accent);
}
.service-link i {
    font-size: 0.875rem;
    transition: var(--transition);
}
.service-link:hover i {
    transform: translateX(4px);
}

/* Why Us Section */
.why-us-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.why-us-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(234, 88, 12, 0.2);
}
.why-us-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.why-us-card:hover .why-us-icon {
    background-color: var(--accent);
    color: white;
}

/* Steps Section */
.step-item {
    position: relative;
    text-align: center;
    padding: 0 15px;
}
.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    position: relative;
    border: 5px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.step-item::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}
.row .col-lg-2.col-md-4:last-child .step-item::after {
    display: none;
}
@media (max-width: 991px) {
    .step-item::after {
        display: none;
    }
    .step-item {
        margin-bottom: 30px;
    }
}
.step-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}
.stars {
    color: #ffb100;
    margin-bottom: 15px;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 0.975rem;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
}
.user-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.user-location {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.accordion-item {
    border-radius: 10px !important;
    border: 1px solid var(--border-color) !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary) !important;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    box-shadow: none !important;
}
.accordion-button::after {
    background-size: 1.25rem;
}
.accordion-body {
    background-color: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 1.5rem;
}

/* Form Contact */
.contact-form-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
}
.contact-info-list {
    list-style: none;
    padding-left: 0;
}
.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-list i {
    width: 40px;
    height: 40px;
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-list p {
    margin-bottom: 0;
}
.contact-info-list h5 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

/* Blog styles */
.blog-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.blog-img {
    position: relative;
    height: 200px;
    background-color: var(--primary);
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.blog-body {
    padding: 1.5rem;
}
.blog-meta {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}
.blog-body h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-body h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.blog-body h3 a:hover {
    color: var(--accent);
}
.blog-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Detail Page & Typography styling */
.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
}
.blog-detail-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}
.blog-detail-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}
.blog-detail-content p {
    margin-bottom: 1.5rem;
}
.blog-detail-content ul, .blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.blog-detail-content li {
    margin-bottom: 0.5rem;
}
.blog-sidebar {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

/* Breadcrumb styling */
.breadcrumb-container {
    background-color: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumb {
    margin-bottom: 0;
}
.breadcrumb-item a {
    color: var(--accent);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Footer Section */
.footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--accent);
}
.footer h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}
.social-links a:hover {
    background-color: var(--accent);
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.875rem;
}

/* Responsive details */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px 0;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-image-wrapper {
        margin-top: 40px;
    }
    .quote-card {
        margin-top: 40px;
    }
}

/* Footer Logo Styling */
.footer-logo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition);
}
.footer-logo:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.brand-logo-footer {
    height: 42px !important;
    width: auto;
    max-height: 42px !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}
.footer-logo:hover .brand-logo-footer {
    filter: none;
}
