/* Layout & structural styles to complement finlegit.css */

/* html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset, 100px);
} */

body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

:root{
    --fl-primary:#6C5CE7;
    --fl-primary-dark:#7C5CFF;
    --fl-primary-light:#7B8EE8;
    --fl-gradient-primary:linear-gradient(135deg,#7B8EE8 0%,#7C5CFF 100%);
    --fl-dark:#2D2645;
    --fl-dark-2:#3D3558;
    --fl-accent:#C9A84C;
    --fl-text:#2D2645;
    --fl-muted:#6A6478;
    --fl-light:#F8F7FC;
    --fl-surface:#FFFFFF;
    --fl-radius:16px;
    --fl-shadow:0 20px 60px rgba(20,15,45,.08);
    --fl-transition:.5s cubic-bezier(.22,1,.36,1);
    --header-offset:116px;
}

/* Navbar — layout overrides handled in premium.css */
#navbar {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}

/* Hero */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 80px 24px 64px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary{
    background:var(--fl-gradient-primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--fl-gradient-primary);
    transform:translateY(-3px);
    box-shadow:0 12px 26px rgba(108,92,231,.35);
}

.btn-ghost{
    background:transparent;
    color:var(--fl-dark);
    border-color:rgba(45,38,69,.20);
}

.btn-ghost:hover{
    border-color:var(--fl-primary);
    color:var(--fl-primary);
    transform:translateY(-3px);
}



/* Sections */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(107, 78, 255, 0.08);
}

.service-row:last-child {
    border-bottom: none;
}

.service-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 16px;
}

.service-capabilities span {
    font-size: 13px;
    color: #6a6478;
    padding: 4px 0;
}

.service-capabilities span::before {
    content: "• ";
    color: #6b4eff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-details {
    margin-top: 32px;
}

.contact-detail {
    padding: 16px 0;
    border-bottom: 1px solid rgba(107, 78, 255, 0.08);
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b4eff;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3450;
}

.contact-value a {
    color: #6b4eff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: #5a5468;
    margin-bottom: 1.2rem;
}

.pillars-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b4eff;
    margin-bottom: 8px;
}

.pillars-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 24px;
}

.pillar-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(107, 78, 255, 0.08);
}

.pillar-row h5 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #1a1330;
}

.pillar-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #6a6478;
}

.why-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3a3450;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8e4f4;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #1a1330;
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn{
    width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border:none;
    border-radius:8px;
    background:var(--fl-gradient-primary);
    color:#fff;
    font-size:15px;
    font-weight:600;
    line-height:1.2;
    letter-spacing:.04em;
    text-transform:uppercase;
    cursor:pointer;
    margin-top:8px;
    transition:all .35s ease;
}

.submit-btn:hover{
    background:var(--fl-gradient-primary);
    transform:translateY(-3px);
    box-shadow:0 12px 26px rgba(108,92,231,.35);
}

.submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating widgets */
.fl-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.2s ease;
}

.fl-whatsapp-float:hover {
    transform: scale(1.1);
}

.fl-whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

#scrollTop{
    position:fixed;
    right:28px;
    bottom:90px;
    z-index:9997;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:linear-gradient(135deg,#7B8EE8 0%,#7C5CFF 100%);
    color:#fff;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transform:translateY(18px) scale(.96);

    box-shadow:
        0 10px 28px rgba(107,78,255,.22);

    transition:
        opacity .45s ease,
        visibility .45s ease,
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        background .35s ease;
}

#scrollTop.visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

@media (max-width:768px){

    #scrollTop{
        width:44px;
        height:44px;
        right:18px;
        bottom:84px;
    }

}
.call-now-button{
    position:fixed;
    left:24px;
    bottom:24px;
    z-index:9998;

    display:none;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:13px 22px;

    border:none;
    border-radius:999px;

    background:linear-gradient(135deg,#7B8EE8 0%,#7C5CFF 100%);
    color:#fff;

    font-size:15px;
    font-weight:600;
    letter-spacing:.01em;
    text-decoration:none;

    box-shadow:
        0 10px 28px rgba(107,78,255,.22);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        opacity .35s ease,
        background .35s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .section-intro,
    .contact-grid,
    .about-grid,
    .why-intro,
    .why-features,
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .call-now-button {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 64px 20px 48px;
    }

    .section {
        padding: 64px 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}
