/*---------------------------------------------------------------------
   Luas Digital - Custom Styles
   Colors: Teal (#0d9488), Red (#dc3545), Light Grey (#f8f9fa)
---------------------------------------------------------------------*/

:root {
    --luas-teal: #0d9488;
    --luas-teal-dark: #0a7a70;
    --luas-teal-light: #14b8a6;
    --luas-red: #dc3545;
    --luas-red-dark: #c82333;
    --luas-grey: #f8f9fa;
    --luas-dark: #1a1a2e;
    --luas-text: #555555;
}

/* ---- Global Overrides ---- */

body {
    color: var(--luas-text);
    overflow-x: hidden;
}

.main-layout {
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: var(--luas-text);
}

/* ---- Buttons ---- */

.btn-luas {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-luas-primary {
    background: var(--luas-red);
    color: #fff;
}

.btn-luas-primary:hover {
    background: var(--luas-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-luas-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-luas-outline:hover {
    background: #fff;
    color: var(--luas-teal);
    transform: translateY(-2px);
}

.btn-luas-teal {
    background: var(--luas-teal);
    color: #fff;
}

.btn-luas-teal:hover {
    background: var(--luas-teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.btn-luas-white {
    background: #fff;
    color: var(--luas-teal);
    border: 2px solid var(--luas-teal);
}

.btn-luas-white:hover {
    background: var(--luas-teal);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Header / Navigation ---- */

.luas-header {
    background: var(--luas-dark);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.luas-header .navbar {
    padding: 15px 0;
}

.luas-header .navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.luas-header .navbar-brand span {
    color: var(--luas-teal-light);
}

.luas-header .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.luas-header .navbar-nav .nav-link:hover,
.luas-header .navbar-nav .nav-link.active {
    color: var(--luas-teal-light);
}

.luas-header .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 4px 8px;
}

.luas-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Hero Section ---- */

.luas-hero {
    background: linear-gradient(135deg, var(--luas-dark) 0%, #16213e 50%, var(--luas-teal-dark) 100%);
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.luas-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(13, 148, 136, 0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.luas-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.luas-hero h1 span {
    color: var(--luas-teal-light);
}

.luas-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 35px;
    max-width: 520px;
}

.luas-hero .btn-luas {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.3); */
}

/* ---- Trust Bar ---- */

.trust-bar {
    background: var(--luas-grey);
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.trust-item {
    text-align: center;
    padding: 15px 10px;
}

.trust-item i {
    font-size: 28px;
    color: var(--luas-teal);
    margin-bottom: 10px;
    display: block;
}

.trust-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--luas-dark);
    padding: 0;
    margin: 0;
}

/* ---- Section Styles ---- */

.luas-section {
    padding: 80px 0;
}

.luas-section-grey {
    background: var(--luas-grey);
}

.luas-section-dark {
    background: var(--luas-dark);
}

.luas-section-teal {
    background: var(--luas-teal);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    color: var(--luas-teal);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--luas-dark);
    padding-bottom: 15px;
}

.section-title p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    color: #777;
}

.section-title-light span {
    color: var(--luas-teal-light);
}

.section-title-light h2 {
    color: #fff;
}

.section-title-light p {
    color: rgba(255,255,255,0.8);
}

/* ---- Services Cards ---- */

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--luas-teal);
}

.service-card i {
    font-size: 40px;
    color: var(--luas-teal);
    margin-bottom: 20px;
    display: block;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--luas-dark);
    margin-bottom: 15px;
    padding: 0;
}

.service-card p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

/* ---- How It Works ---- */

.step-box {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--luas-teal);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-family: 'Poppins', sans-serif;
}

.step-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--luas-dark);
    margin-bottom: 12px;
    padding: 0;
}

.step-box p {
    font-size: 15px;
    color: #777;
}

/* ---- Pricing ---- */

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--luas-teal);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--luas-red);
    color: #fff;
    padding: 5px 40px;
    font-size: 13px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--luas-dark);
    margin-bottom: 10px;
    padding: 0;
}

.pricing-amount {
    margin: 25px 0;
}

.pricing-amount .price {
    font-size: 56px;
    font-weight: 700;
    color: var(--luas-teal);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.pricing-amount .period {
    font-size: 18px;
    color: #999;
    display: block;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: var(--luas-text);
}

.pricing-features li i {
    color: var(--luas-teal);
    margin-right: 10px;
    width: 20px;
}

.pricing-features li.not-included {
    color: #ccc;
}

.pricing-features li.not-included i {
    color: #ccc;
}

/* ---- Portfolio ---- */

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.portfolio-card .portfolio-img {
    height: 220px;
    background: linear-gradient(135deg, var(--luas-teal) 0%, var(--luas-teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-card .portfolio-img i {
    font-size: 60px;
    color: rgba(255,255,255,0.3);
}

.portfolio-card .portfolio-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 148, 136, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-img .overlay {
    opacity: 1;
}

.portfolio-card .portfolio-body {
    padding: 25px;
}

.portfolio-card .portfolio-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--luas-dark);
    margin-bottom: 8px;
    padding: 0;
}

.portfolio-card .portfolio-body span {
    color: var(--luas-teal);
    font-size: 14px;
    font-weight: 500;
}

.portfolio-card .portfolio-body p {
    font-size: 15px;
    color: #777;
    margin-top: 10px;
}

/* ---- CTA Banner ---- */

.cta-banner {
    background: linear-gradient(135deg, var(--luas-teal) 0%, var(--luas-teal-dark) 100%);
    padding: 70px 0;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Contact Form ---- */

.luas-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.luas-form .form-control {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.luas-form .form-control:focus {
    border-color: var(--luas-teal) !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.15) !important;
}

.luas-form textarea.form-control {
    height: 140px;
    resize: vertical;
}

.luas-form select.form-control {
    color: #888;
}

/* ---- FAQ ---- */

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-item .faq-question {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 600;
    color: var(--luas-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-item .faq-question:hover {
    background: var(--luas-grey);
}

.faq-item .faq-question i {
    transition: transform 0.3s ease;
    color: var(--luas-teal);
}

.faq-item .faq-question.active i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #777;
    line-height: 26px;
    display: none;
}

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

/* ---- About ---- */

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.about-feature i {
    font-size: 24px;
    color: var(--luas-teal);
    margin-right: 15px;
    margin-top: 3px;
    min-width: 30px;
}

.about-feature h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--luas-dark);
    margin-bottom: 5px;
    padding: 0;
}

.about-feature p {
    font-size: 15px;
    color: #777;
    margin: 0;
}

/* ---- Footer ---- */

.luas-footer {
    background: var(--luas-dark);
    padding: 60px 0 0;
}

.luas-footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0;
}

.luas-footer p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 26px;
}

.luas-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luas-footer ul li {
    margin-bottom: 10px;
}

.luas-footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.luas-footer ul li a:hover {
    color: var(--luas-teal-light);
}

.luas-footer .footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.luas-footer .footer-contact li i {
    color: var(--luas-teal-light);
    margin-right: 12px;
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

/* ---- Page Header (inner pages) ---- */

.page-header {
    background: linear-gradient(135deg, var(--luas-dark) 0%, #16213e 60%, var(--luas-teal-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Info Box ---- */

.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 18px 22px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 15px;
    color: #856404;
}

/* ---- Extra Helpers ---- */

.text-teal {
    color: var(--luas-teal);
}

.bg-teal {
    background: var(--luas-teal);
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* ---- Responsive ---- */

@media (max-width: 991px) {
    .luas-hero {
        padding: 130px 0 70px;
    }
    .luas-hero h1 {
        font-size: 36px;
    }
    .luas-hero p {
        font-size: 17px;
    }
    .hero-image {
        margin-top: 40px;
    }
    .luas-header .navbar-collapse {
        background: var(--luas-dark);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .luas-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    .luas-hero h1 {
        font-size: 30px;
    }
    .luas-hero p {
        font-size: 16px;
        margin: 0 auto 30px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .cta-banner h2 {
        font-size: 28px;
    }
    .luas-form {
        padding: 25px;
    }
    .page-header {
        padding: 120px 0 50px;
    }
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .luas-hero h1 {
        font-size: 26px;
    }
    .btn-luas {
        padding: 12px 28px;
        font-size: 15px;
    }
    .pricing-amount .price {
        font-size: 44px;
    }
}
