/* =============================================
   CSS RESET — eliminates ALL browser defaults
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins, sans-serif;
    background: #0f172a;
    color: #fff;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Reset every element that browsers add margin/padding to */
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
ol,
ul,
dl,
dd,
hr,
fieldset,
pre {
    margin: 0;
    padding: 0;
}

hr {
    border: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0;
    padding: 0;
    color: #999;
}

/* =============================================
   WORDPRESS-SPECIFIC RESETS
   ============================================= */

/* Hide admin bar and prevent its margin push */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
    overflow-x: hidden;
}

body.admin-bar {
    margin-top: 0 !important;
}

/* Kill all WordPress block default margins */
.wp-block,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-cover,
.wp-block-image,
.wp-block-gallery,
.wp-block-video,
.wp-block-audio,
.wp-block-quote,
.wp-block-pullquote,
.wp-block-separator,
.wp-block-spacer {
    margin-top: 0;
    margin-bottom: 0;
}

.wp-block p,
.wp-block-group p,
.wp-block-column p {
    margin: 0;
    padding: 0;
}

/* WordPress auto-p paragraphs */
.entry-content>p,
.comment-content>p,
.hero-content>p,
.cta-box>p,
.testimonial>p,
.faq-answer>p,
.blog-content>p,
.page-hero-content>p,
.contact-card p,
.footer-grid p,
.copyright,
.developer-credit {
    margin: 0;
    padding: 0;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 90%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   HEADER — fixed, no gaps
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9999;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .3s;
    overflow: visible;
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

header.sticky {
    background: #111827;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

/* Kill any spacing WordPress injects into header children */
header p,
header ul,
header li,
header div,
header a,
header h1,
header h2,
header h3,
header h4,
header h5,
header h6 {
    margin: 0;
    padding: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    margin-right: 80px;
}

.logo span {
    color: #ff6b00;
}

.site-logo {
    display: flex;
    align-items: center;
    margin-right: 80px;
}

.site-logo .custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

@media (min-width: 992px) {
    .nav-links {
        flex: 1;
        justify-content: center;
    }

    .nav-links li:last-child {
        margin-left: auto;
    }
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover {
    color: #ff6b00;
}

.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    padding: 16px 40px;
    background: #ff6b00;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .35s ease;
    line-height: 1;
}

.btn:hover {
    background: #ff8c33;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 0, .35);
}

.btn:active {
    transform: scale(.96);
}

.btn-blog {
    margin: 20px 0 0;
    padding: 16px 40px;
    background: #ff6b00;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
}

.btn-blog:hover {
    background: #ff8c33;
}

.btn-whatapp {
    padding: 16px 40px;
    background: #25D366;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: all .35s ease;
    line-height: 1;
    gap: 10px;
}

.btn-whatapp:hover {
    background: #1da851;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, .35);
}

.btn-whatapp:active {
    transform: scale(.96);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 42px;
    border: 2px solid #ff6b00;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .35s ease;
    line-height: 1;
}

.contact-btn:hover {
    background: #ff6b00;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 107, 0, .35);
}

.contact-btn:active {
    transform: scale(.96);
}

/* =============================================
   CALL BUTTON
   ============================================= */
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, .35);
    line-height: 1;
}

.call-btn i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    font-size: 16px;
    animation: ring 1.5s infinite;
}

.call-btn:hover {
    background: linear-gradient(135deg, #0069d9, #004085);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 123, 255, .45);
}

.call-btn:active {
    transform: scale(.97);
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

/* =============================================
   HERO — directly below header, no gap
   ============================================= */
.hero {
    height: 100vh;
    background: url('../images/hero.jpg') #0f172a center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
    margin-top: 0;
}

.hero[style*="background-image"] {
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
}

.hero-content {
    position: relative;
    max-width: 650px;
}

.hero-content p {
    margin: 0;
    padding: 0;
}

.hero-content p:first-child {
    color: #ff6b00;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p:last-of-type {
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
    padding: 100px 0;
    background: #fff;
    color: #111;
}

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

.feature-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 20px;
    display: block;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box p {
    margin: 0;
}

/* =============================================
   SECTION TITLE
   ============================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #ff6b00;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin: 0;
}

.section-title h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #fff;
}

.section-title p {
    color: #b8b8b8;
    margin: 0;
}

/* =============================================
   BLOG
   ============================================= */
.blog {
    padding: 100px 0;
    background: #111827;
}

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

.blog-card {
    background: #1b2433;
    border-radius: 20px;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: #fff;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #ff6b00;
}

.blog-content p {
    margin: 0;
}

.post-meta {
    color: #888;
    margin-bottom: 10px;
}

/* =============================================
   COUNTER
   ============================================= */
.counter {
    padding: 100px 0;
    background: #ff6b00;
}

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

.counter-box {
    text-align: center;
    color: #fff;
}

.counter-box h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

/* =============================================
   CTA
   ============================================= */
.cta {
    padding: 120px 0;
    background: url('../images/banner.jpg') center/cover no-repeat;
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .70);
}

.cta-box {
    position: relative;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 55px;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #ddd;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 120px 0;
    background: #111827;
}

.testimonial {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #1b2433;
    padding: 50px;
    border-radius: 20px;
}

.testimonial p {
    margin: 0;
}

.testimonial h4 {
    margin-top: 20px;
}

.testimonial.active {
    display: block;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 120px 0;
    background: #f5f5f5;
}

.faq .section-title h2 {
    color: #333;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    padding: 22px;
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    text-align: left;
    font-family: Poppins, sans-serif;
}

.faq-answer {
    display: none;
    padding: 20px;
    color: #666;
}

.faq-answer p {
    margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {

    background: #000; 
    padding: 80px 0 30px;

}

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

footer h2 {
    margin: 0 0 20px 0;
    padding: 0;
}

footer h3 {
    margin: 0 0 20px 0;
    padding: 0;
}

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

footer ul li {
    margin: 0 0 10px 0;
    padding: 0;
}

footer p {
    margin: 0;
    padding: 0;
    color: #999;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #333;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 20px;
    margin-top: 20px;
}

.footer-links {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-links .separator {
    margin: 0 8px;
    color: #555;
}

.copyright {
    text-align: center;
    color: #888;
    margin: 0;
}

.developer-credit {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 0;
}

.developer-credit a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.developer-credit a:hover {
    color: #ff8c33;
    text-decoration: underline;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    color: #888;
}

.payment-label {
    font-weight: 600;
    color: #aaa;
    margin-right: 4px;
}

.payment-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 13px;
    color: #aaa;
    transition: .3s;
}

.payment-item i {
    font-size: 14px;
    color: #ff6b00;
}

.payment-item:hover {
    border-color: #ff6b00;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    color: #ddd;
    font-size: 16px;
    transition: .3s;
}


.social-icons-hero {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons-hero a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #222;
    color: #ddd;
    font-size: 16px;
    transition: .3s;
}

.social-fb:hover {
    background: #3b5998;
}

.social-wa:hover {
    background: #25D366;
}

.social-tt:hover {
    background: #000;
}

.social-ig:hover {
    background: #E1306C;
}

.social-yt:hover {
    background: #ff0000;
}

/* =============================================
   HOVER EFFECTS
   ============================================= */
.service-card,
.feature-box,
.blog-card,
.brand-card,
.step {
    transition: .4s;
}

.service-card:hover,
.feature-box:hover,
.blog-card:hover,
.brand-card:hover,
.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, .18);
}

.gallery-item:hover img,
.blog-card:hover img,
.about-image:hover img {
    transform: scale(1.08);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 60px;
    width: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
    transition: all .4s ease;
    animation: pulse 2s infinite, autoExpand 6s infinite;
}

.whatsapp-float i {
    font-size: 30px;
    min-width: 60px;
    text-align: center;
}

.whatsapp-float span {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: .4s ease;
    animation: textShow 6s infinite;
}

@keyframes autoExpand {

    0%,
    15% {
        width: 60px;
    }

    20%,
    55% {
        width: 180px;
    }

    60%,
    100% {
        width: 60px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    width: 180px;
}

.whatsapp-float:hover span,
.whatsapp-float:focus span {
    opacity: 1;
    max-width: 120px;
    margin-right: 18px;
}

@keyframes textShow {

    0%,
    15% {
        opacity: 0;
        max-width: 0;
        margin-right: 0;
    }

    20%,
    55% {
        opacity: 1;
        max-width: 120px;
        margin-right: 18px;
    }

    60%,
    100% {
        opacity: 0;
        max-width: 0;
        margin-right: 0;
    }
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
    height: 50vh;
    min-height: 350px;
    background: url('../images/hero-banner.jpg') #0f172a center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.page-hero-content {
    position: relative;
    text-align: center;
}

.page-hero-content span {
    color: #ff6b00;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin: 0;
}

.page-hero-content h1 {
    font-size: 55px;
    margin: 15px 0;
}

.page-hero-content p {
    color: #ccc;
    font-size: 18px;
    margin: 0;
}

/* =============================================
   CONTACT INFO
   ============================================= */
.contact-info {
    padding: 100px 0;
    background: #0f172a;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: #1b2433;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .4s;
}

.contact-card:hover {
    border-color: #ff6b00;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, .15);
}

.contact-card i {
    font-size: 36px;
    color: #ff6b00;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-card p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-section {
    padding: 100px 0;
    background: #111827;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #1b2433;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6b00;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    font-family: Poppins, sans-serif;
    width: 100%;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* =============================================
   MAP
   ============================================= */
.map-section iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination-links {
    display: inline-flex;
    gap: 8px;
}

.pagination-links a,
.pagination-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 50px;
    background: #1b2433;
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.pagination-links a:hover {
    background: #ff6b00;
    color: #fff;
}

.pagination-links .current {
    background: #ff6b00;
    color: #fff;
}