/* --------------------------------------------------
   RESET
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Helvetica, Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px;
}

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

img {
    max-width: 100%;
    display: block;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
/* ================================
   HEADER
================================ */
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-direction: row;
}

/* ================================
   LOGO
================================ */
.logo a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    color: #111;
}

/* ================================
   NAV
================================ */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #111;
    opacity: 0.65;
    transition: opacity 0.25s ease;
}

/* Hover */
.main-nav a:hover {
    opacity: 1;
}

/* ================================
   ACTIVE MENU ITEM
================================ */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    opacity: 1;
}

/* subtle underline for active */
.main-nav .current-menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #111;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
/* ===============================
   WORDPRESS MENU FIX (FORCED)
================================ */

/* Reset default WP styles */
.site-header ul,
.site-header li {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

/* Header layout */
.site-header {
        background-color: #02163b;
}

.site-header .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 27px 24px;
	flex-direction: row;
}

/* Logo */
.site-header .logo a {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* Menu */
.site-header .main-nav ul {
    display: flex !important;
    gap: 36px;
}

.site-header .main-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    text-decoration: none;
    opacity: 1;
    font-weight: 600;
}

.site-header .main-nav a:hover {
    opacity: 1;
}

/* Active item */
.site-header .current-menu-item > a {
    opacity: 1;
    position: relative;
}

.site-header .current-menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #111;
}


/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.subtitle {
    margin-top: 12px;
    font-size: 18px;
    opacity: 0.6;
}

/* --------------------------------------------------
   ABOUT
-------------------------------------------------- */
.about {
    border-top: 1px solid #eee;
}

.about h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    opacity: 0.6;
}

.about p {
    max-width: 720px;
    font-size: 20px;
}

/* --------------------------------------------------
   WORK
-------------------------------------------------- */
.work {
    border-top: 1px solid #eee;
}

.work h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
    opacity: 0.6;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.work-item {
    cursor: pointer;
}

.work-item h3 {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
}

/* subtle hover */
.work-item img {
    transition: opacity 0.3s ease;
}

.work-item:hover img {
    opacity: 0.85;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
    border-top: 1px solid #eee;
}

.site-footer p {
    font-size: 13px;
    opacity: 1;
    text-align: left;
    padding: 0px;
	color:#fff;
}
.footer-bottom p {
	text-align: center;
	color:#fff;
}
/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .about p {
        font-size: 18px;
    }

    .work-grid {
        gap: 40px;
    }
}

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

.hero-banner {
    position: relative;
    min-height: 78vh;
    background: url("https://growthiva.co/wp-content/uploads/2026/01/banner.webp")
                top center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.3);
}

/* Content */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* CTA Button */
.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    background: #071b3a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #071b3a;
}

/* ======================================
   MOBILE
====================================== */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

/* ======================================
   HELP SECTION
====================================== */

.help-section {
    padding: 30px 20px;
    background: #ffffff;
    text-align: center;
}

.container.narrow {
    max-width: 780px;
    margin: 0 auto;
}

.help-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 32px;
}

.help-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.help-section strong {
    font-weight: 700;
}
.help-section .container.narrow {
   padding-bottom: 0;
}
.badge {
    margin-top: 40px;
}

.badge img {
    max-width: 100%;
    margin: 0 auto;
}

/* ======================================
   TESTIMONIAL SECTION
====================================== */

.testimonial-section {
    padding: 30px 20px;
    background: #ffffff;
    text-align: center;
}
.testimonial-section .container.narrow {
	padding-top:0px;
}
.testimonial-section h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
}

.testimonial-section blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #222;
    margin-bottom: 24px;
}

.testimonial-section cite {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

/* Button */
.btn-dark {
    display: inline-block;
    padding: 14px 34px;
    background: #071b3a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.btn-dark:hover {
    background: #000000;
}

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

@media (max-width: 768px) {
    .help-section,
    .testimonial-section {
        padding: 80px 20px;
    }

    .help-section h2,
    .testimonial-section h2 {
        font-size: 28px;
    }
}

/* ===============================
   CTA BANNER
================================ */

.cta-banner {
    position: relative;
    width: 100%;
    padding: 0px 0px 60px 0px;
	
}

.cta-banner-section {
    position: relative;
    min-height: 635px;
    background-image: url('https://images.squarespace-cdn.com/content/v1/5a0a3c9a8fd4d276810a8a9e/1566139163871-HH18GETA9K9T0S3MC7XD/edited%2B-%2BIMG_2266.jpg'); /* CHANGE IMAGE */
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: center;
	max-width:1000px;
	margin:0px auto;
}

/* Dark Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.1);
    z-index: 1;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 20px;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.08em;
    margin-bottom: 35px;
    text-transform: uppercase;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 38px;
    background: #ffffff;
    color: #000000;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #071b3a;
    color: #ffffff;
}

/* Container fix */
/* .cta-banner .container {
    max-width: 100%;
    padding: 0;
} */

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .cta-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .cta-banner-section {
        min-height: 420px;
    }

    .cta-content h2 {
        font-size: 32px;
        letter-spacing: 0.05em;
    }
}


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

.site-footer {
    background: #1f1f1f;
    color: #ffffff;
    padding: 70px 0 0;
    font-size: 15px;
}

.site-footer .container {
    max-width: 1200px;
}

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

/* Columns */
.footer-col p {
    color: #ffff;
    line-height: 1.6;
	    margin-top: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #ffffff;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 12px 18px;
    background: #ffffff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Social */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    background: #151515;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Desktop */
.main-nav {
    display: flex;
}

/* Mobile */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        box-shadow: 10px 0 30px rgba(0,0,0,0.12);
        z-index: 1001;
    }

    .main-nav.active {
        left: 0;
		display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav ul li a {
        font-size: 25px !important
        font-weight: 500;
		color:#000;
		
    }
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 991px) {

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 40px;
        margin: 0;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        width: 100%;
        color: #000 !important;
        text-decoration: none;
		font-size:25px !important;
    }
}

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

/* Tablet */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT COLUMN */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 14.5px;
    color: #cbd5f5;
}

/* Icons */
.footer-contact i {
    min-width: 18px;
    font-size: 15px;
    color: #fff;
    margin-top: 4px;
}

/* Links */
.footer-contact a {
    color: #cbd5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #818cf8;
}

/* Address text */
.footer-contact span {
    color: #cbd5f5;
}

/* Social under contact */
.footer-col .footer-social {
    display: flex;
    gap: 12px;
}

.footer-col .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5f5;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-col .footer-social a:hover {
    background: #fff;
    color: #02163b;
    transform: translateY(-3px);
}

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #02163b;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
#backToTop:hover {
    background: #02163b;
    transform: translateY(-4px);
}
.highlight-menu a{
	border: 2px solid #fff;
    border-radius: 300px;
    padding: 10px 26px;
}
.highlight-menu a:hover{
	    background-color: #fff;
    color: #181818;
}
.footer-menu .menu {
	    padding-left: 20px;
}



.about-section {
    padding: 80px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
}

.about-sidebar {
    position: sticky;
    top: 120px;
	margin-top: 30px;
}

.about-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-nav li {
    margin-bottom: 12px;
}

.about-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #111;
    opacity: 0.7;
}

.about-nav .current-menu-item a {
    opacity: 1;
    font-weight: 700;
}

.about-main {
    width: 100%;
}

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

.about-image img {
    width: 100%;
    border-radius: 6px;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-cta a {
    font-weight: 600;
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

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

    .about-sidebar {
        position: static;
    }
}

.about-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-nav li {
    margin-bottom: 10px;
	 list-style: none;
}

.about-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f6f7f9;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
	text-transform:uppercase;
}

.about-nav a:hover {
    background: #e9ecff;
    transform: translateX(6px);
}

.about-nav .current-menu-item a {
    background: #0b3cff;
    color: #fff;
}



.about-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
}

.about-sidebar {
    position: sticky;
    top: 120px;
}

.testimonial-video {
    margin-bottom: 40px;
	    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.testimonial-video iframe {
    width: 100%;height: 450px;
    aspect-ratio: 16 / 9;
}

.testimonial-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.testimonial-list {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    margin-bottom: 50px;
}

.testimonial-quote blockquote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.testimonial-quote blockquote span {
    font-size: 26px;
    font-weight: 700;
}

.testimonial-quote figcaption {
    margin-top: 10px;
    font-weight: 600;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        position: static;
    }
}

.testimonial-video {
    margin-bottom: 60px;
}

.testimonial-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}
.about-content h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.testimonial-intro {
    max-width: 640px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: #555;
}

.about-content hr {
    width: 120px;
    margin: 50px auto 80px;
    border: none;
    height: 1px;
    background: #ddd;
}
.testimonial-list {
    max-width: 820px;
    margin: 0 auto;
}
.testimonial-quote {
    text-align: center;
    margin-bottom: 90px;
}

.testimonial-quote blockquote {
    font-size: 18px;
    line-height: 1.85;
    font-style: italic;
    color: #222;
    max-width: 720px;
    margin: 0 auto 18px;
    position: relative;
}
.testimonial-quote blockquote span {
    font-size: 34px;
    font-weight: 700;
    color: #ccc;
}
@media (max-width: 768px) {

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-sidebar {
        position: static;
    }

    .about-content h1 {
        font-size: 30px;
    }

    .testimonial-quote blockquote {
        font-size: 16px;
    }
}
.testimonials-page-content {
	margin-top:40px;
}


.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
}

.accordion-items-container {
  max-width: 800px;
  margin-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
	list-style:none;
}

.accordion-item__click-target {
  width: 100%;
  background: none;
  border: 0;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-item__title {
  font-size: 20px;
  font-weight: 600;
}

.accordion-item__description {
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
}

.plus {
  position: relative;
  width: 14px;
  height: 14px;
}

.plus__horizontal-line,
.plus__vertical-line {
  position: absolute;
  background: #000;
}

.plus__horizontal-line {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.plus__vertical-line {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.accordion-item__click-target[aria-expanded="true"]
.plus__vertical-line {
  opacity: 0;
}
/* Header nav base */
.site-header .main-nav ul.menu {
    display: flex;
    align-items: center;
}

/* Parent li */
.site-header .menu-item {
    position: relative;
}

/* Submenu */
.site-header .menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
display:block !important;
    background: #071b3a; /* match header */
    min-width: 220px;
    padding: 12px 0;
    margin: 0;

    list-style: none;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 9999;
}

/* Show on hover */
.site-header .menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Submenu links */
.site-header .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Hover effect */
.site-header .sub-menu li a:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.menu-item-has-children > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
}
@media (max-width: 768px) {
    .menu-item .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .menu-item.active > .sub-menu {
        display: block;
    }
}


.contact-page {
    padding: 80px 0;
}

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

.contact-image img {
    max-width: 100%;
}

.contact-title {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-image img {
        margin: 0 auto 30px;
    }
}

/* === FORM CONTAINER === */
.wpcf7 {
    max-width: 680px;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* === HEADINGS === */
.wpcf7 h4 {
    margin: 28px 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0b1f44;
}

/* === INPUTS & TEXTAREA === */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dcdfe6;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wpcf7 textarea {
    min-height: 130px;
    resize: vertical;
}

/* Focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #0b1f44;
    box-shadow: 0 0 0 3px rgba(11,31,68,0.12);
    outline: none;
}

/* === CHECKBOX & RADIO LIST === */
.wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.wpcf7-list-item input {
    margin-right: 10px;
    transform: scale(1.1);
}

/* === SUBMIT BUTTON === */
.wpcf7-submit {
    margin-top: 30px;
    background: linear-gradient(135deg, #0b1f44, #102f6b);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(11,31,68,0.3);
}

/* === ERROR / VALIDATION === */
.wpcf7-not-valid-tip {
    color: #d63636;
    font-size: 12px;
    margin-top: 4px;
}

.wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 25px;
    }
}

.resume-layout {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 40px;
}

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


.template-card h3 {
    font-size: 18px;
    margin-top: 10px;
}
.template-card {
  max-width: 360px;
  margin: auto;
  text-align: center;
}

.template-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.template-content h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.template-content ul {
  text-align: left;
  padding-left: 20px;
  font-size: 15px;
}

.template-content .price {
  margin: 15px 0;
  font-size: 16px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 14px;
}



.products-archive {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

/* Sidebar */
.products-archive .sidebar {
  width: 260px;
  flex-shrink: 0;
}
.products-archive .text-center {
	text-align:center;
}
.products-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.products-menu li {
  margin-bottom: 10px;
}

.products-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  background: #f5f5f5;
  border-radius: 6px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.products-menu a:hover,
.products-menu .current-menu-item a {
  background: #111;
  color: #fff;
}

/* Main content */
.products-archive .content {
  flex: 1;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 25px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-content {
  padding: 18px;
}

.product-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.price {
  font-size: 16px;
  font-weight: 600;
  color: #2b7cff;
  margin-bottom: 14px;
}

.product-content .btn {
  display: inline-block;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.product-content .btn:hover {
  background: #2b7cff;
}
@media (max-width: 991px) {
  .products-archive {
    flex-direction: column;
  }

  .products-archive .sidebar {
    width: 100%;
  }
}


.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  transition: transform 0.3s ease;
}

.product-image:hover img {
  transform: scale(1.05);
}

.product-image::after {
  content: "🔍";
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image:hover::after {
  opacity: 1;
}
.short-description {
  font-size: 14px;
  color: #666;
  margin: 8px 0 12px;
  line-height: 1.5;
}

/* ===== Container ===== */
.single-product.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  gap: 60px;
}

/* ===== Sidebar ===== */
.sidebar {
  width: 220px;
  flex-shrink: 0;
}

.sidebar .products-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar .products-menu li {
  margin-bottom: 12px;
}

.sidebar .products-menu a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
}

.sidebar .products-menu a:hover,
.sidebar .products-menu .current-menu-item a {
  color: #0056b3;
}

/* ===== Main Content ===== */
.content {
  flex: 1;
}

/* ===== Product Wrapper ===== */
.product-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ===== Product Image ===== */
.product-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== Product Summary ===== */
.product-summary h1 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-summary .price {
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
}

/* ===== Features List ===== */
.features {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 8px;
  color: #444;
  font-size: 14px;
}

/* ===== Description ===== */
.description {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn:hover {
  background: #000;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .single-product.container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 40px;
  }

  .product-wrapper {
    grid-template-columns: 1fr;
  }

  .product-image img {
    max-width: 280px;
    margin-bottom: 30px;
  }
}
.product-actions {
  margin-top: 30px;
}

.purchase-btn {
  display: inline-block;
  margin-bottom: 20px;
}

.share {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #555;
}

.share a {
  color: #555;
  font-size: 14px;
}

.share a:hover {
  color: #000;
}
.related-products {
  margin-top: 120px;
  text-align: center;
}

.related-products h2 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

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

.related-item img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 15px;
}

.related-item h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.related-item .price {
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}


.podcast-list { margin: 40px auto; }
.podcast-episode { border-bottom: 1px solid #ddd; padding: 25px 0; }
.podcast-player { width: 100%; margin: 15px 0; }
.episode-title {
    font-size: 19px;
    font-weight: bold;
    line-height: 21px;
    margin-bottom: 12px;
}
