/* ===========================================================
   MenuLink Website
   Layout Styles - Part 1
   Navbar • Hero • Sections • CTA
=========================================================== */

/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all .35s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border-bottom: 1px solid var(--divider);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */

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

.logo img {
    height: 48px;
}

.logo span {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

/* =========================
   NAV MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: .3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}

/* =========================
   NAV ACTION
========================= */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 14px;

}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle {

    display: none;

    width: 46px;

    height: 46px;

    border-radius: 12px;

    background: var(--surface);

    border: 1px solid var(--border);

    align-items: center;

    justify-content: center;

    cursor: pointer;

}

.mobile-toggle svg {

    width: 24px;

    height: 24px;

}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {

    position: fixed;

    top: 82px;

    left: -100%;

    width: 100%;

    background: #fff;

    padding: 40px 25px;

    transition: .35s;

    border-top: 1px solid var(--divider);

    box-shadow: var(--shadow);

}

.mobile-menu.active {

    left: 0;

}

.mobile-menu nav {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.mobile-menu a {

    font-size: 18px;

    font-weight: 600;

}

.mobile-menu .btn {

    margin-top: 20px;

    width: 100%;

}

/* =========================
   HERO
========================= */

.hero {

    padding-top: 170px;

    padding-bottom: 120px;

    background:
    radial-gradient(circle at top right,
    rgba(109,0,55,.06),
    transparent 45%),
    linear-gradient(
        to bottom,
        #ffffff,
        #fff9fc
    );

}

.hero-wrapper {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;

}

/* =========================
   HERO CONTENT
========================= */

.hero-content .badge {

    margin-bottom: 22px;

}

.hero-content h1 {

    margin-bottom: 24px;

}

.hero-content p {

    font-size: 20px;

    max-width: 620px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 40px;

    flex-wrap: wrap;

}

/* =========================
   HERO STATS
========================= */

.hero-stats {

    display: flex;

    gap: 40px;

    margin-top: 50px;

    flex-wrap: wrap;

}

.hero-stat h3 {

    color: var(--primary);

    font-size: 34px;

    margin-bottom: 6px;

}

.hero-stat span {

    color: var(--text-light);

}

/* =========================
   HERO IMAGE
========================= */

.hero-image {

    position: relative;

}

.hero-image img {

    width: 100%;

    border-radius: 28px;

    box-shadow: 0 30px 80px rgba(0,0,0,.12);

}

.hero-image::before {

    content: "";

    position: absolute;

    inset: -20px;

    border-radius: 36px;

    background: linear-gradient(
        135deg,
        rgba(109,0,55,.08),
        rgba(31,168,74,.05)
    );

    z-index: -1;

}

/* =========================
   SECTION HEADER
========================= */

.section-header {

    text-align: center;

    max-width: 760px;

    margin: auto auto 70px;

}

.section-header p {

    margin-top: 18px;

}

/* =========================
   CONTENT GRID
========================= */

.content-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 70px;

    align-items: center;

}

.content-image img {

    border-radius: 24px;

    box-shadow: var(--shadow-lg);

}

.content-text ul {

    margin-top: 25px;

}

.content-text li {

    display: flex;

    gap: 12px;

    margin-bottom: 16px;

    color: var(--text-light);

}

/* =========================
   CTA SECTION
========================= */

.cta-section {

    padding: 90px 0;

}

.cta-box {

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color: #fff;

    border-radius: 34px;

    padding: 80px;

    text-align: center;

    overflow: hidden;

    position: relative;

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);

    top: -120px;

    right: -120px;

}

.cta-box::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    left: -100px;

    bottom: -100px;

}

.cta-box h2 {

    color: #fff;

    margin-bottom: 20px;

}

.cta-box p {

    color: rgba(255,255,255,.88);

    max-width: 650px;

    margin: auto;

    font-size: 18px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-top: 40px;

    flex-wrap: wrap;

}

.cta-buttons .btn-outline {

    border-color: rgba(255,255,255,.35);

    color: #fff;

    background: transparent;

}

.cta-buttons .btn-outline:hover {

    background: #fff;

    color: var(--primary);

}

/* ===========================================================
   MenuLink Website
   Layout Styles - Part 2
   Features • Stats • About • Pricing • FAQ • Contact
=========================================================== */


/* =========================
   FEATURES
========================= */

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{

    background:#fff;

    border:1px solid var(--divider);

    border-radius:24px;

    padding:40px 30px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.feature-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    background:var(--primary-light);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    margin-bottom:25px;

}

.feature-icon svg{

    width:32px;

    height:32px;

}

.feature-card h3{

    margin-bottom:16px;

}

.feature-card p{

    line-height:1.8;

}


/* =========================
   STATS
========================= */

.stats{

    background:var(--surface);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:40px;

    background:#fff;

    border-radius:24px;

    border:1px solid var(--divider);

}

.stat-card h2{

    color:var(--primary);

    font-size:54px;

    margin-bottom:12px;

}

.stat-card p{

    font-size:16px;

}


/* =========================
   ABOUT
========================= */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    border-radius:28px;

    box-shadow:var(--shadow-lg);

}

.about-content h2{

    margin-bottom:22px;

}

.about-content p{

    margin-bottom:18px;

}

.about-list{

    margin-top:28px;

}

.about-list li{

    display:flex;

    gap:14px;

    margin-bottom:18px;

    align-items:flex-start;

}

.about-list svg{

    color:var(--accent);

    flex-shrink:0;

}


/* =========================
   PROCESS
========================= */

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    position:relative;

    background:#fff;

    border:1px solid var(--divider);

    border-radius:24px;

    padding:35px;

    text-align:center;

}

.process-number{

    width:56px;

    height:56px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin:auto auto 25px;

}

.process-card h3{

    margin-bottom:15px;

}


/* =========================
   PRICING
========================= */

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}

.pricing-card{

    position:relative;

    background:#fff;

    border:1px solid var(--divider);

    border-radius:30px;

    padding:45px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.pricing-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.pricing-card.featured{

    border:2px solid var(--primary);

    transform:scale(1.04);

}

.pricing-badge{

    position:absolute;

    top:22px;

    right:22px;

    background:var(--accent);

    color:#fff;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}

.plan-name{

    font-size:26px;

    font-weight:700;

}

.plan-price{

    margin:28px 0;

}

.plan-price h2{

    font-size:58px;

    color:var(--primary);

}

.plan-price span{

    color:var(--text-light);

}

.plan-features{

    margin:35px 0;

}

.plan-features li{

    display:flex;

    gap:12px;

    margin-bottom:18px;

    color:var(--text-light);

}

.plan-features svg{

    color:var(--accent);

    flex-shrink:0;

}

.pricing-card .btn{

    width:100%;

}


/* =========================
   FAQ
========================= */

.faq{

    background:var(--surface);

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    border:1px solid var(--divider);

    margin-bottom:18px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 28px;

    cursor:pointer;

    background:none;

    font-size:18px;

    font-weight:700;

}

.faq-question svg{

    transition:.3s;

}

.faq-item.active svg{

    transform:rotate(180deg);

}

.faq-answer{

    display:none;

    padding:0 28px 28px;

}

.faq-item.active .faq-answer{

    display:block;

}


/* =========================
   CONTACT
========================= */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-card{

    display:flex;

    gap:18px;

    padding:26px;

    background:#fff;

    border-radius:22px;

    border:1px solid var(--divider);

}

.contact-icon{

    width:58px;

    height:58px;

    border-radius:16px;

    background:var(--primary-light);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.contact-form{

    background:#fff;

    border:1px solid var(--divider);

    border-radius:28px;

    padding:40px;

    box-shadow:var(--shadow-sm);

}

.form-group{

    margin-bottom:22px;

}

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.contact-form textarea{

    min-height:160px;

    resize:vertical;

}

.contact-form button{

    width:100%;

}


/* =========================
   GOOGLE MAP
========================= */

.map{

    margin-top:60px;

    overflow:hidden;

    border-radius:28px;

    border:1px solid var(--divider);

}

.map iframe{

    width:100%;

    height:420px;

    border:none;

}

/* ===========================================================
   MenuLink Website
   Layout Styles - Part 3
   Footer • Page Header • Breadcrumb • 404
   Contact Success • Floating Buttons
===========================================================*/


/* =========================
   PAGE HEADER
========================= */

.page-header{

    padding:180px 0 90px;

    background:
    linear-gradient(
        180deg,
        #fff,
        var(--surface)
    );

    text-align:center;

}

.page-header h1{

    margin-bottom:18px;

}

.page-header p{

    max-width:720px;

    margin:auto;

    font-size:18px;

}


/* =========================
   BREADCRUMB
========================= */

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:25px;

    color:var(--text-light);

    font-size:15px;

}

.breadcrumb a{

    color:var(--primary);

    font-weight:600;

}

.breadcrumb span{

    color:var(--text-muted);

}


/* =========================
   FOOTER
========================= */

.footer{

    background:#0F0B0D;

    color:#fff;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap:60px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:22px;

}

.footer-logo img{

    height:46px;

}

.footer-logo h3{

    color:#fff;

    margin:0;

}

.footer-about{

    color:#C8C8C8;

    line-height:1.9;

}

.footer-social{

    display:flex;

    gap:14px;

    margin-top:28px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

}

.footer-column h4{

    color:#fff;

    margin-bottom:22px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-links a{

    color:#CFCFCF;

    transition:.25s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:28px 0;

}

.footer-bottom-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#BDBDBD;

}

.footer-bottom-links{

    display:flex;

    gap:22px;

}

.footer-bottom-links a{

    color:#BDBDBD;

}

.footer-bottom-links a:hover{

    color:#fff;

}


/* =========================
   NEWSLETTER
========================= */

.newsletter{

    margin-top:35px;

}

.newsletter form{

    display:flex;

    gap:12px;

    margin-top:18px;

}

.newsletter input{

    flex:1;

}


/* =========================
   404 PAGE
========================= */

.error-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:120px 20px;

}

.error-content{

    max-width:700px;

}

.error-code{

    font-size:140px;

    font-weight:900;

    color:var(--primary);

    line-height:1;

}

.error-content h2{

    margin:25px 0 18px;

}

.error-content p{

    margin-bottom:40px;

}


/* =========================
   CONTACT SUCCESS
========================= */

.success-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:120px 20px;

}

.success-card{

    background:#fff;

    border:1px solid var(--divider);

    border-radius:28px;

    padding:70px;

    max-width:760px;

    box-shadow:var(--shadow);

}

.success-icon{

    width:90px;

    height:90px;

    margin:auto auto 30px;

    border-radius:50%;

    background:rgba(31,168,74,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--accent);

}

.success-card h2{

    margin-bottom:18px;

}

.success-card p{

    margin-bottom:35px;

}


/* =========================
   BACK TO TOP
========================= */

.back-to-top{

    position:fixed;

    right:28px;

    bottom:28px;

    width:54px;

    height:54px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow);

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:998;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-float{

    position:fixed;

    left:28px;

    bottom:28px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow-lg);

    z-index:998;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}


/* =========================
   SCROLL PROGRESS
========================= */

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:var(--primary);

    z-index:2000;

}


/* =========================
   SECTION DIVIDER
========================= */

.section-divider{

    width:120px;

    height:4px;

    background:var(--primary);

    border-radius:999px;

    margin:22px auto 0;

}


/* =========================
   REVEAL
========================= */

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}


/* =========================
   PAGE SPACING
========================= */

.page-content{

    padding:100px 0;

}


/* =========================
   EMPTY STATE
========================= */

.empty-state{

    text-align:center;

    padding:100px 30px;

}

.empty-state img{

    width:180px;

    margin:auto auto 30px;

}

.empty-state h3{

    margin-bottom:15px;

}


/* =========================
   LOADER
========================= */

.page-loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader{

    width:52px;

    height:52px;

    border:5px solid var(--divider);

    border-top-color:var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

.hero{

    position:relative;

    overflow:hidden;

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        radial-gradient(

            rgba(109,0,55,.05) 1px,

            transparent 1px

        );

    background-size:28px 28px;

    pointer-events:none;

}

.hero-trust{

    display:flex;

    gap:24px;

    margin-top:40px;

    flex-wrap:wrap;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--text-light);

}

.trust-item svg{

    color:var(--accent);

}

.footer-contact{

    margin-top:24px;

}

.footer-contact p{

    margin-bottom:10px;

}

/* About Page Styles */
.about-content .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-stats-grid h3 {
    font-size: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* Team Section */
.team-member {
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

/* Statistics Section */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
}

/* Testimonial Cards */
.testimonial-card {
    padding: 32px 24px;
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(109, 0, 55, 0.1);
}

.contact-form .form-control.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.contact-form .form-control.success {
    border-color: #1FA84A;
    box-shadow: 0 0 0 4px rgba(31, 168, 74, 0.1);
}

/* Contact Cards */
.contact-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Social Icons */
.social-connect a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.social-connect a[style*="background:#25D366"]:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Map Section */
.map-section iframe {
    filter: grayscale(0.2);
    transition: filter 0.3s;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        grid-column: 1 / -1;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .business-hours div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card > div:first-child {
        margin: 0 auto;
    }
}

/* Policy Page Styles */
.policy-content h2 {
    margin-top: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--divider);
}

.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.policy-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.policy-content .policy-section {
    scroll-margin-top: 100px;
}

.policy-content strong {
    color: var(--text);
}

/* Policy Meta */
.policy-meta .tag {
    display: inline-block;
}

/* Related Links */
.related-links .btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.max-w-lg {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}