
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */
body{
    font-family:'Poppins',sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 89, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 30%),
        linear-gradient(135deg, #fff7ed 0%, #f8fafc 45%, #f5f3ff 100%);
    color:#1f2937;
    line-height:1.8;
}

/* Top Menu */
.top-menu{
    position:sticky;
    top:0;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px 6%;
    background:rgba(255,255,255,0.94);
    box-shadow:0 10px 30px rgba(17,24,39,0.08);
    backdrop-filter:blur(12px);
}

.brand-name{
    color:#07183f;
    font-size:22px;
    font-weight:800;
    text-decoration:none;
}

.brand-name::after{
    content:"";
    display:block;
    width:86px;
    height:4px;
    margin-top:3px;
    border-radius:999px;
    background:linear-gradient(90deg, #f97316, #22c55e, #a855f7);
}

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

.menu-links a{
    color:#374151;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    padding:8px 12px;
    border-radius:8px;
    transition:0.25s;
}

.menu-links a:hover{
    color:#be123c;
    background:#fff7ed;
}

/* Hero Section */
.hero{
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(76, 29, 149, 0.82)),
        linear-gradient(45deg, #f97316, #22c55e, #a855f7);
    color:white;
    padding:80px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    left:8%;
    right:8%;
    bottom:0;
    height:6px;
    background:linear-gradient(90deg, #f97316, #facc15, #22c55e, #ec4899, #a855f7);
    border-radius:999px 999px 0 0;
}

.hero-content{
    position:relative;
    z-index:1;
}

.hero-content h1{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    color:#fde68a;
    opacity:0.95;
}

/* Main Container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:40px 0;
}

/* Featured Image */
.image-section img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 45px rgba(17,24,39,0.18);
    border:4px solid white;
}

/* Content Card */
.content-card{
    background:white;
    margin-top:35px;
    padding:40px;
    border-radius:16px;
    box-shadow:0 18px 45px rgba(17,24,39,0.1);
    border-top:6px solid #f97316;
}

/* Headings */
.content-card h2{
    color:#7c2d12;
    margin-top:35px;
    margin-bottom:15px;
    font-size:28px;
}

/* Paragraph */
.content-card p{
    margin-bottom:20px;
    font-size:16px;
}

/* List */
.content-card ul,
.content-card ol{
    margin-left:25px;
    margin-bottom:20px;
}

.content-card li{
    margin-bottom:10px;
}

/* Steps Box */
.steps-box{
    background:linear-gradient(135deg, #fff7ed, #ecfdf5);
    border-left:6px solid #22c55e;
    padding:25px;
    border-radius:12px;
    margin-top:20px;
}

/* Table Container */
.table-container{
    overflow-x:auto;
    margin-top:25px;
}

/* Table */
table{
    width:100%;
    border-collapse:collapse;
    border-radius:12px;
    overflow:hidden;
}

/* Table Header */
table thead{
    background:linear-gradient(90deg, #7c2d12, #be123c, #6d28d9);
    color:white;
}

table th{
    padding:18px;
    text-align:left;
    font-size:16px;
}

/* Table Body */
table td{
    padding:16px;
    border-bottom:1px solid #eee;
    background:white;
}

/* Alternate Row Color */
table tbody tr:nth-child(even) td{
    background:#fff7ed;
}

/* Hover Effect */
table tbody tr:hover td{
    background:#ecfdf5;
    transition:0.3s;
}

/* Table Links */
table a{
    color:#be123c;
    text-decoration:none;
    font-weight:500;
}

table a:hover{
    text-decoration:underline;
}

.copy-btn{
    border:0;
    border-radius:8px;
    padding:9px 14px;
    background:#111827;
    color:white;
    cursor:pointer;
    font:inherit;
    font-size:14px;
    font-weight:600;
    transition:0.25s;
}

.copy-btn:hover{
    background:#be123c;
    transform:translateY(-1px);
}

.hidden-site{
    display:none;
}

/* Button */
.btn{
    border:0;
    cursor:pointer;
    display:inline-block;
    margin-top:30px;
    padding:14px 30px;
    background:linear-gradient(135deg, #f97316, #be123c, #7c3aed);
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:500;
    box-shadow:0 12px 24px rgba(190,18,60,0.25);
    transition:0.3s;
}

.btn:hover{
    background:linear-gradient(135deg, #22c55e, #f97316, #be123c);
    transform:translateY(-2px);
}

.btn:disabled{
    cursor:not-allowed;
    opacity:0.75;
    transform:none;
}

.agency-highlight,
.cta-card,
.faq-card{
    margin-top:35px;
    padding:38px 40px;
    border-radius:16px;
    background:white;
    box-shadow:0 18px 45px rgba(17,24,39,0.1);
}

.agency-highlight{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    border-left:6px solid #22c55e;
}

.agency-highlight h2,
.cta-card h2,
.faq-card h2{
    color:#111827;
    font-size:30px;
    line-height:1.3;
    margin-bottom:12px;
}

.agency-highlight p,
.cta-card p,
.faq-card p{
    color:#4b5563;
}

.agency-highlight .btn{
    flex:0 0 auto;
    margin-top:0;
}

.cta-card{
    background:
        linear-gradient(135deg, rgba(17,24,39,0.96), rgba(124,45,18,0.88)),
        linear-gradient(135deg, #f97316, #22c55e, #a855f7);
    color:white;
}

.cta-card h2,
.cta-card p{
    color:white;
}

.cta-card p{
    max-width:850px;
}

.faq-list{
    display:grid;
    gap:14px;
    margin-top:22px;
}

.faq-list details{
    border:1px solid #fed7aa;
    border-radius:12px;
    background:#fffaf5;
    padding:16px 18px;
}

.faq-list summary{
    cursor:pointer;
    color:#7c2d12;
    font-size:17px;
    font-weight:700;
}

.faq-list details[open]{
    border-color:#22c55e;
    background:#f0fdf4;
}

.faq-list p{
    margin-top:12px;
}

.sticky-whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:20;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:13px 20px;
    border-radius:999px;
    background:linear-gradient(135deg, #16a34a, #22c55e);
    color:white;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 18px 35px rgba(22,163,74,0.36);
    transition:0.25s;
}

.sticky-whatsapp:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 38px rgba(22,163,74,0.44);
}

.contact-card{
    margin-top:35px;
    padding:42px;
    border-radius:16px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,247,237,0.95)),
        linear-gradient(135deg, #f97316, #22c55e, #a855f7);
    box-shadow:0 18px 45px rgba(17,24,39,0.12);
    border:1px solid rgba(249,115,22,0.22);
}

.section-label{
    display:inline-block;
    color:#be123c;
    font-size:13px;
    font-weight:700;
    letter-spacing:0;
    text-transform:uppercase;
    margin-bottom:8px;
}

.contact-card h2{
    color:#111827;
    font-size:30px;
    line-height:1.3;
    margin-bottom:12px;
}

.contact-card p{
    max-width:780px;
    margin-bottom:24px;
    color:#4b5563;
}

.whatsapp-form{
    display:grid;
    gap:18px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
}

.whatsapp-form label{
    display:grid;
    gap:8px;
    color:#374151;
    font-weight:600;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea{
    width:100%;
    border:1px solid #fed7aa;
    border-radius:10px;
    padding:13px 14px;
    font:inherit;
    color:#1f2937;
    background:#fff;
    outline:none;
    transition:0.25s;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus{
    border-color:#22c55e;
    box-shadow:0 0 0 4px rgba(34,197,94,0.13);
}

.whatsapp-btn{
    width:max-content;
    background:linear-gradient(135deg, #16a34a, #22c55e, #f97316);
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

.social-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 18px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    background:linear-gradient(135deg, #be123c, #7c3aed);
    box-shadow:0 10px 22px rgba(124,58,237,0.18);
    transition:0.25s;
}

.social-links a:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg, #f97316, #be123c);
}

/* Footer */
footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

/* Responsive */
@media(max-width:768px){

    .top-menu{
        align-items:flex-start;
        flex-direction:column;
        padding:14px 5%;
    }

    .brand-name{
        font-size:20px;
    }

    .menu-links{
        width:100%;
        justify-content:space-between;
    }

    .menu-links a{
        padding:7px 8px;
        font-size:14px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .content-card{
        padding:25px;
    }

    .content-card h2{
        font-size:24px;
    }

    table th,
    table td{
        padding:12px;
        font-size:14px;
    }

    .copy-btn{
        padding:8px 10px;
        font-size:13px;
    }

    .agency-highlight{
        align-items:flex-start;
        flex-direction:column;
    }

    .agency-highlight,
    .cta-card,
    .faq-card{
        padding:26px;
    }

    .agency-highlight h2,
    .cta-card h2,
    .faq-card h2{
        font-size:24px;
    }

    .agency-highlight .btn{
        width:100%;
        text-align:center;
    }

    .contact-card{
        padding:26px;
    }

    .contact-card h2{
        font-size:24px;
    }

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

    .whatsapp-btn{
        width:100%;
    }
}
