:root {
    --primary-color: #1c1c1c;
    --accent-color: #ea4d8b;
    --brand-purple: #9a4b91;
    --brand-pink: #ea4d8b;
    --brand-blue: #524b9a;
    --text-muted: #666;
    --bg-gradient: linear-gradient(90deg, #9a4b91, #ea4d8b);
    --bg-gradient-all: linear-gradient(90deg, #9a4b91, #ea4d8b, #524b9a);
    --font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-family: var(--font-secondary);
    --nav-gap: 2rem;
    --header-padding: 1.5rem 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--primary-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TYPOGRAPHY */
h1,
.heading-primary {
    font-family: var(--font-primary);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2,
.heading-secondary {
    font-family: var(--font-secondary);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--brand-pink);
}

h3,
.heading-tertiary {
    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.text-body {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 25px;
}

.text-accent {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}

.section-headline {
    font-family: var(--font-primary);
    font-size: 39px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.2;
}

.footer-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.3;
}

/* HEADER & NAV */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--header-padding);
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img,
.custom-logo-link img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.custom-logo-link {
    display: block;
}

/* Hide site title if a logo is present */
.site-title {
    display: none;
}

nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    gap: var(--nav-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a,
.nav-links li a {
    text-decoration: none;
    color: var(--brand-purple);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links li a:hover,
.nav-links li.current-menu-item a {
    color: var(--brand-pink);
}

.nav-links i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* DROP-DOWN STYLES */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 1rem 0;
    border-radius: 0.5rem;
    display: none;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    animation: fadeInNav 0.2s ease-in-out;
}

@keyframes fadeInNav {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #444;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: var(--brand-pink);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    position: absolute;
    top: -1rem;
    left: 100%;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 1rem 0;
    border-radius: 0.5rem;
    display: none;
    z-index: 101;
}

.dropdown-submenu:hover>.submenu {
    display: block;
    animation: fadeInNav 0.2s ease-in-out;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* SEARCH FORM STYLES */
.search-form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i.ph-magnifying-glass {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-field {
    padding: 0.6rem 2.8rem 0.6rem 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s;
}

.search-field:focus {
    width: 250px;
    border-color: var(--brand-purple);
    outline: none;
}

.search-submit {
    position: absolute;
    right: 0.5rem;
    background: var(--bg-gradient);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn {
    background: var(--bg-gradient);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background-color: var(--brand-purple);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: 9999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-search {
    padding: 0 0 1.5rem 0;
    margin-bottom: 1rem;
}

.mobile-search .search-field {
    width: 100%;
}

/* ANIMATIONS */
.animate-fade-up,
.animate-fade-in,
.animate-scale-up {
    opacity: 0;
}

/* Force visibility in Elementor editor */
.elementor-editor-active .animate-fade-up,
.elementor-editor-active .animate-fade-in,
.elementor-editor-active .animate-scale-up,
.elementor-editor-active .animate-slide-up,
.elementor-editor-active .animate-slide-left,
.elementor-editor-active .animate-slide-right {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.animate-fade-up.animated {
    animation: fadeUp 0.8s forwards;
}

.animate-fade-in.animated {
    animation: fadeIn 0.8s forwards;
}

.animate-scale-up.animated {
    animation: scaleUp 0.8s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FOOTER */
.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 4rem;
    max-width: 1440px;
    margin: 0 auto;
}

/* Footer Columns */
.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.footer-col.newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col.newsletter .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-col.newsletter .form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-col.newsletter .form-group input {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.875rem;
}

.footer-col.newsletter .form-group input:focus {
    outline: none;
    border-color: var(--brand-pink);
}

.footer-col.newsletter .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-col.newsletter .send-btn {
    padding: 0.75rem 1.5rem;
    background: var(--brand-pink);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-col.newsletter .send-btn:hover {
    background: #c9397a;
}

/* Quick Links */
.footer-col.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.links li {
    margin-bottom: 0.75rem;
}

.footer-col.links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col.links a i {
    font-size: 1.1rem;
    color: var(--brand-pink);
    transition: transform 0.3s ease;
}

.footer-col.links a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-col.links a:hover i {
    transform: scale(1.2);
}

/* Reach Us & Follow */
.follow-section {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
    opacity: 0.8;
}

.social-icons a:hover {
    color: var(--brand-pink);
    transform: scale(1.1);
    opacity: 1;
}

.contact-details h4 {
    margin-bottom: 1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details strong {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom .bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom .bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom .bottom-links a:hover {
    color: #fff;
}

.footer-bottom .bottom-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* NINJA FORMS STYLES - Aggressive Overrides */
.nf-form-cont,
.ninja-forms-form,
.nf-form-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nf-form-content {
    padding: 0 !important;
}

.nf-field-container {
    margin-bottom: 1.5rem !important;
}

/* Hide Ninja Forms Labels for Footer */
.footer-col.newsletter .nf-field-label,
.footer-col.newsletter .nf-label-filler,
.footer-col.newsletter .nf-field-description {
    display: none !important;
}

/* Base Input Styling */
.nf-form-content input[type="text"],
.nf-form-content input[type="email"],
.nf-form-content input[type="tel"],
.nf-form-content textarea,
.nf-form-content select,
.nf-field-element input {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1.2rem !important;
    color: #fff !important;
    font-family: var(--font-secondary) !important;
    font-size: 0.95rem !important;
    height: 48px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.nf-form-content input:focus,
.nf-form-content textarea:focus {
    outline: none !important;
    border-color: var(--brand-pink) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Button Styling */
.nf-form-content input[type="button"],
.nf-form-content input[type="submit"],
.nf-form-content .nf-field-element input[type="button"],
.nf-form-content .nf-field-element input[type="submit"],
.nf-form-content button {
    background: var(--bg-gradient) !important;
    color: #fff !important;
    border: none !important;
    padding: 0 1.5rem !important;
    border-radius: 0.5rem !important;
    font-family: var(--font-primary) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    line-height: normal !important;
    white-space: nowrap !important;
}

.nf-form-content input[type="button"]:hover,
.nf-form-content input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(234, 77, 139, 0.3) !important;
    opacity: 0.9;
}

/* Footer Inline Layout - SUPER AGGRESSIVE */
.footer-col.newsletter {
    font-size: 0 !important;
    /* Kills stray text nodes like the dot */
}

/* Restore font-size for actual content */
.footer-col.newsletter h4,
.footer-col.newsletter .nf-form-cont,
.footer-col.newsletter .newsletter-form {
    font-size: 1rem !important;
}

.footer-col.newsletter .nf-form-cont,
.footer-col.newsletter .nf-form-wrap,
.footer-col.newsletter .nf-form-content,
.footer-col.newsletter nf-fields-wrap,
.footer-col.newsletter .nf-form-layout {
    display: block !important;
    width: 100% !important;
}

.footer-col.newsletter nf-fields-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-col.newsletter .nf-field-container {
    margin-bottom: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
}

.footer-col.newsletter .nf-field-container:last-child {
    flex: 0 0 auto !important;
}

/* Hide ALL Ninja Forms junk labels, help text, etc. */
.footer-col.newsletter .nf-field-label,
.footer-col.newsletter .nf-label-filler,
.footer-col.newsletter .nf-field-description,
.footer-col.newsletter .nf-form-fields-required,
.footer-col.newsletter .ninja-forms-req-symbol,
.footer-col.newsletter label {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Force join the input and button */
.footer-col.newsletter .nf-field-container:first-child input {
    border-radius: 0.5rem 0 0 0.5rem !important;
    border-right: none !important;
}

.footer-col.newsletter .nf-field-container:last-child input[type="submit"],
.footer-col.newsletter .nf-field-container:last-child input[type="button"],
.footer-col.newsletter .nf-field-container:last-child button {
    border-radius: 0 0.5rem 0.5rem 0 !important;
    margin-left: 0 !important;
    border-left: none !important;
}

/* Input Placeholder */
.footer-col.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Sidebar Specific */
.sidebar-ninja-form .nf-form-content input[type="text"],
.sidebar-ninja-form .nf-form-content input[type="email"] {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 1rem 1.2rem !important;
    border-radius: 12px !important;
}

.sidebar-ninja-form .nf-field-element input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.sidebar-ninja-form .nf-field-label label {
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.sidebar-ninja-form .nf-form-content input[type="submit"],
.sidebar-ninja-form .nf-form-content input[type="button"],
.sidebar-ninja-form .nf-form-content button {
    background: #fff !important;
    color: var(--brand-purple) !important;
    width: 100% !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    height: 52px !important;
}

.sidebar-ninja-form .nf-form-content input[type="submit"]:hover {
    background: #f8fafc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Error/Success Messages */
.nf-error-msg {
    color: var(--brand-pink) !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
}

.nf-response-msg {
    padding: 1rem !important;
    border-radius: 0.5rem !important;
    margin-top: 1rem !important;
    font-size: 0.9rem !important;
}

.nf-pass .nf-response-msg {
    background: rgba(107, 70, 193, 0.1) !important;
    border: 1px solid var(--brand-purple) !important;
    color: #fff !important;
}


/* UTILITIES */
.gradient-animated {
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-padding {
        padding: 1rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Ninja Forms Responsive */
    .ninja-forms-form {
        max-width: 100%;
        padding: 0 1rem;
    }

    .ninja-forms-form .nf-field-element input[type="submit"] {
        width: 100%;
    }

    .cta-btn .contact-desktop {
        display: none;
    }

    .cta-btn .contact-mobile {
        display: inline;
    }
}

/* WHATSAPP & BACK TO TOP BUTTONS */
.whatsapp-float-btn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(154, 75, 145, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.5s both;
}

.whatsapp-float-btn i {
    font-size: 2rem;
}

.whatsapp-float-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 20px rgba(154, 75, 145, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1c1c1c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0) translateY(20px);
    }

    60% {
        opacity: 1;
        transform: scale(1.1) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.back-to-top-btn {
    position: fixed;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 60px;
    height: 60px;
    background: #1c1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid var(--brand-purple);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(28, 28, 28, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--brand-purple);
    border-color: var(--brand-pink);
    transform: scale(1.1);
}

/* HERO SECTION STYLES (Elementor Widget) */
.hero h2 {
    font-family: var(--font-primary);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h3 {
    font-family: var(--font-secondary);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--brand-pink);
    margin-bottom: 0.75rem;
}

.hero p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* SINGLE BLOG PAGE STYLES */
.contact-hero {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 6rem 2rem;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--brand-purple);
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--brand-pink);
    bottom: 10%;
    right: 10%;
}

.shape-3 {
    width: 70px;
    height: 70px;
    background: var(--brand-cyan);
    top: 30%;
    right: 20%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.contact-hero .blog-meta {
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.contact-hero .blog-meta i {
    color: var(--brand-pink);
    margin-right: 0.25rem;
}

.content-row {
    margin: 0 auto;
    background: #fff;
}

.blog-content {
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.blog-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.post-footer {
    margin: 4rem auto;
    padding-top: 3rem;
    border-top: 1px solid #f0f0f0;
}

.author-box {
    margin-bottom: 4rem;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(107, 70, 193, 0.05);
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.author-share {
    margin-left: auto;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-info .author-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-pink);
    margin-bottom: 0.5rem;
}

.author-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.share-links {
    display: flex;
    gap: 1rem;
}

.share-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.share-link:hover {
    background: var(--brand-purple);
    color: #fff !important;
    border-color: var(--brand-purple);
    transform: translateY(-3px);
}

.copy-link:hover {
    background: var(--brand-pink);
    border-color: var(--brand-pink);
}

.share-link i {
    font-size: 1.2rem;
}

.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0;
}

.blog-navigation a {
    display: block;
    padding: 2rem;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.blog-navigation a:hover {
    border-color: var(--brand-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.08);
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-dir {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-navigation a:hover .nav-dir {
    color: var(--brand-purple);
}

.nav-next .nav-content {
    align-items: flex-end;
    text-align: right;
}

@media (max-width: 1024px) {
    .blog-hero-50 {
        grid-template-columns: 1fr;
    }

    .blog-hero-left {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .blog-hero-right {
        padding: 1.5rem;
    }

    .blog-hero-right h1 {
        font-size: 1.75rem;
    }

    .author-card,
    .share-card {
        flex-direction: column;
        text-align: center;
    }

    .blog-navigation {
        grid-template-columns: 1fr;
    }

    .blog-navigation div.nav-next {
        text-align: left;
    }

    .whatsapp-float-btn,
    .back-to-top-btn {
        width: 50px;
        height: 50px;
    }
}

/* SEARCH RESULTS PAGE */
.search-results {
    padding-bottom: 5rem;
}

.search-hero {
    margin-bottom: 6rem;
}

.search-hero .page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-transform: none;
    line-height: 1.2;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.search-hero .page-title span {
    color: var(--brand-pink);
    font-weight: 800;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.search-item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f2f2f2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.search-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(154, 75, 145, 0.3);
}

.search-item-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-item header {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    padding: 0;
}

.post-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-purple);
    margin-bottom: 1.25rem;
    width: fit-content;
    border: 1px solid rgba(154, 75, 145, 0.1);
}

.search-item .entry-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gradient);
    line-height: 1.4;
}

.search-item .entry-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.search-item .entry-title a:hover {
    color: var(--primary-color);
}

.search-item .entry-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-item .entry-footer {
    margin-top: auto;
}

.search-item .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-item .read-more i {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-item:hover .read-more i {
    background: var(--brand-purple);
    color: #fff;
    transform: translateX(5px);
}

/* No Results State */
.no-results {
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
    padding: 5rem 2rem;
    background: #f8fafc;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.no-results i.ph-magnifying-glass {
    font-size: 4rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
}

.no-results h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.search-box-large {
    max-width: 500px;
    margin: 0 auto;
}

.search-box-large .search-field {
    width: 100%;
    height: 60px;
    padding: 0 4rem 0 2rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-box-large .search-submit {
    width: 45px;
    height: 45px;
    top: 7.5px;
    right: 7.5px;
}

.pagination-wrapper {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 0.75rem;
}

.pagination-wrapper .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background: var(--bg-gradient);
    color: #fff;
    box-shadow: 0 10px 20px rgba(154, 75, 145, 0.2);
}

.search-box-large .search-input-wrapper {
    width: 100%;
    padding: 1rem 1.5rem;
}

.search-box-large .search-field {
    font-size: 1.1rem;
}

.search-box-large .search-submit {
    width: 50px;
    height: 50px;
}

.footer-col.newsletter .newsletter-follow {
    margin-top: 2.5rem;
}

.footer-col.newsletter .newsletter-follow h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col.newsletter .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}