@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: "Work Sans", Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; color: #555; background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --teal: #50dec8;
  --teal-dark: #3ab8a8;
  --navy: #191919;
  --blue: #2e4682;
  --gray-bg: #f6f6f6;
  --white: #ffffff;
  --text-dark: #191919;
  --text-mid: #666;
  --text-light: #999;
  --transition: 0.3s cubic-bezier(0.16,1,0.3,1);
}

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); padding: 0; font-size: 13px; color: #aaa; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: stretch; min-height: 44px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 0; }
.top-info { display: flex; align-items: center; gap: 10px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08); height: 100%; }
.top-info:first-child { padding-left: 0; }
.top-info .icon-wrap { width: 30px; height: 30px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.top-info .icon-wrap i { color: #fff; font-size: 12px; }
.top-info-text span { display: block; }
.top-info-title { color: #fff; font-weight: 600; font-size: 12px; line-height: 1.2; }
.top-bar-right .social-label { color: #aaa; font-size: 12px; padding-right: 15px; border-right: 1px solid rgba(255,255,255,0.08); height: 100%; display: flex; align-items: center; }
.top-social-links { display: flex; align-items: center; }
.top-social-links a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: #aaa; transition: color var(--transition); font-size: 13px; }
.top-social-links a:hover { color: var(--teal); }

/* ===== MAIN HEADER ===== */
.main-header { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; transition: all var(--transition); }
.header-inner { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 80px; }

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img-wrap { display: flex; align-items: center; justify-content: flex-start; height: 70px; padding: 6px 0; }
.logo-img { height: 180%; width: auto; max-width: 200px; object-fit: contain; display: block; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.main-header.shrunk .logo-img-wrap { height: 52px; }
.logo-icon { display: none; }
.logo-text { display: none; }

/* ===== DESKTOP NAV ===== */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links li { position: relative; }
.nav-links a { display: flex; align-items: center; gap: 4px; padding: 0 16px; height: 80px; font-size: 13px; font-weight: 500; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; transition: color var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links .has-dropdown > a::after { content: ""; display: inline-block; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -2px; }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s ease; z-index: 100; }
.nav-links li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { height: auto; padding: 10px 20px; display: block; font-size: 13px; color: #555; border-left: 3px solid transparent; transition: all var(--transition); }
.dropdown li a:hover { color: var(--teal); border-left-color: var(--teal); background: #f9f9f9; }
.nav-phone-btn { display: flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; padding: 10px 20px; border-radius: 3px; font-size: 14px; font-weight: 600; margin-left: 16px; transition: background var(--transition); white-space: nowrap; }
.nav-phone-btn:hover { background: var(--teal-dark); color: #fff; }

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; margin-left: 12px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide-1 { background-image: url("https://avantage.bold-themes.com/accountant/wp-content/uploads/sites/6/2019/03/img-slider-01.jpg"); }
.slide-2 { background-image: url("https://avantage.bold-themes.com/accountant/wp-content/uploads/sites/6/2019/03/img-slider-02.jpg"); }
.slide-3 { background-image: url("https://avantage.bold-themes.com/accountant/wp-content/uploads/sites/6/2019/04/img-slider-03.jpg"); }
.slide-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.65); }
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.hero-text { padding: 60px 0; opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.hero-text.animate-in { opacity: 1; transform: translateY(0); }
.hero-super { font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.hero-super::before { content: ""; display: block; width: 40px; height: 2px; background: var(--teal); flex-shrink: 0; }
.hero-heading { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.1; color: #fff; font-weight: 100; margin-bottom: 30px; }
.hero-heading strong { font-weight: 900; display: block; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-teal { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--teal); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 3px; transition: all var(--transition); }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: #fff; color: var(--teal); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 3px; transition: all var(--transition); }
.btn-white:hover { background: var(--teal); color: #fff; }
.slider-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition); border: 2px solid transparent; }
.slider-dot.active { background: var(--teal); border-color: var(--teal); width: 28px; border-radius: 5px; }
.slider-arrows { position: absolute; bottom: 50%; transform: translateY(50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; pointer-events: none; }
.slider-arrow { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: all var(--transition); border-radius: 2px; }
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); }
.hero-divider { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; }
.hero-divider svg { display: block; width: 100%; height: 60px; }

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.section-label::before { content: ""; display: block; width: 30px; height: 2px; background: var(--teal); }
.section-title { font-family: "Playfair Display", Georgia, serif; font-size: 1.875rem; color: var(--navy); font-weight: 300; line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: #777; font-size: 15px; max-width: 500px; line-height: 1.7; margin-bottom: 30px; }

/* ===== BUTTONS ===== */
.btn-navy { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 3px; transition: all var(--transition); }
.btn-navy:hover { background: var(--teal); color: #fff; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: gap var(--transition); }
.read-more:hover { gap: 10px; color: var(--teal-dark); }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--gray-bg); padding: 80px 0 60px; position: relative; z-index: 2; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card-wrap { display: flex; flex-direction: column; gap: 20px; }
.service-card-wrap.offset { margin-top: 40px; }
.service-card { background: #fff; padding: 32px 28px 28px; position: relative; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.service-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.12); transform: translateY(-4px); }
.service-card-icon { position: absolute; top: 24px; right: 24px; width: 72px; height: 72px; opacity: 0.9; display: flex; align-items: center; justify-content: center; }
.service-card-img-icon { width: 72px; height: 72px; object-fit: contain; display: block; }
.service-card:hover .service-card-icon { opacity: 0.6; }
.service-num { font-family: "Work Sans", Arial, Helvetica, sans-serif; font-size: 60px; font-weight: 900; color: var(--gray-bg); line-height: 1; margin-bottom: 8px; transition: color var(--transition); }
.service-card:hover .service-num { color: rgba(80,222,200,0.12); }
.service-card h3 { font-family: "Work Sans", Arial, Helvetica, sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: #777; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.services-header-col { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.services-btn-wrap { margin-top: 20px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: #fff; padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; }
.about-badge { position: absolute; bottom: -20px; right: -20px; width: 140px; height: 140px; background: var(--teal); border-radius: 2px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 16px; }
.about-badge .badge-num { font-family: "Work Sans", Arial, Helvetica, sans-serif; font-size: 42px; font-weight: 900; line-height: 1; }
.about-badge .badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon { width: 44px; height: 44px; background: rgba(80,222,200,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-icon i { color: var(--teal); font-size: 16px; }
.about-feature h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.about-feature p { font-size: 13px; color: #777; line-height: 1.6; }

/* ===== TAX FEATURES SECTION ===== */
.tax-features-section { background: #f5f5f5; padding: 90px 0 80px; font-family: "Work Sans", Arial, Helvetica, sans-serif; }
.tax-features-section .container { width: min(1200px, 92%); margin: 0 auto; }
.tax-intro { max-width: 760px; margin-bottom: 55px; }
.tax-label { display: inline-flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 400; color: #222; margin-bottom: 16px; }
.tax-label span { width: 50px; height: 2px; background: #67d8cf; display: inline-block; }
.tax-title { font-family: "Playfair Display", Georgia, serif; font-size: 54px; line-height: 1.12; font-weight: 300; color: #1b1b1b; margin: 0 0 24px; letter-spacing: -0.5px; }
.tax-desc { max-width: 760px; font-size: 17px; line-height: 2; color: #222; margin: 0; font-weight: 400; }
.tax-divider { width: 100%; height: 1px; background: #d9d9d9; margin: 46px 0 58px; }
.tax-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px 64px; }
.tax-item { display: flex; align-items: flex-start; gap: 22px; }
.tax-icon-img-wrap { width: 72px; min-width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tax-img-icon { width: 80px; height: 80px; object-fit: contain; display: block; transition: transform 0.3s ease; }
.tax-item:hover .tax-img-icon { transform: scale(1.08); }
.tax-content h4 { font-size: 24px; line-height: 1.2; font-weight: 100; color: #1d1d1d; margin: 0 0 12px; }
.tax-content p { font-size: 14px; line-height: 1.7; color: #222; margin: 0; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonial-fluid-section { width: 100%; padding: 0; margin: 0; background: #f4f4f4; font-family: "Work Sans", Arial, Helvetica, sans-serif; }
.testimonial-fluid-wrap { position: relative; width: 100%; min-height: 560px; overflow: hidden; background: linear-gradient(90deg, #4f8780 0%, #9ee7e0 100%); display: flex; align-items: stretch; }
.testimonial-left { width: 58%; padding: 85px 40px 70px 70px; position: relative; z-index: 2; }
.testimonial-label { display: inline-flex; align-items: center; gap: 14px; color: #ffffff; font-size: 16px; font-weight: 400; margin-bottom: 18px; }
.testimonial-label span { width: 50px; height: 2px; background: #69ddd4; display: inline-block; }
.testimonial-title { font-family: "Playfair Display", Georgia, serif; margin: 0 0 18px; font-size: 56px; line-height: 1.1; font-weight: 300; color: #ffffff; letter-spacing: -0.5px; }
.testimonial-subtitle { max-width: 620px; margin: 0 0 55px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.95); font-weight: 500; }
.testimonial-slider-area { position: relative; overflow: hidden; width: 100%; max-width: 760px; }
.testimonial-track { display: flex; transition: transform 0.7s ease; width: 100%; }
.testimonial-slide { min-width: 100%; position: relative; padding: 35px 110px 40px 0; box-sizing: border-box; }
.quote-bg { position: absolute; font-size: 210px; line-height: 1; font-weight: 600; color: rgba(255,255,255,0.08); pointer-events: none; z-index: 0; }
.quote-left { left: -18px; top: -25px; }
.quote-right { right: 70px; top: -25px; }
.testimonial-text { position: relative; z-index: 2; margin: 0 0 24px; font-size: 22px; line-height: 1.45; color: #ffffff; font-weight: 500; max-width: 760px; }
.testimonial-name { position: relative; z-index: 2; margin: 0; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.78); }
.testimonial-dots { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.testimonial-dots .dot { width: 16px; height: 3px; background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s ease; }
.testimonial-dots .dot.active { width: 10px; height: 10px; background: #69ddd4; border-radius: 50%; }
.testimonial-right { position: absolute; right: 0; bottom: 0; width: 42%; height: 100%; display: flex; align-items: flex-end; justify-content: center; z-index: 3; }
.testimonial-right img { max-height: 620px; width: auto; max-width: 100%; object-fit: contain; display: block; }

/* ===== TAX RESULTS SECTION ===== */
.tax-results-section { background: #f3f3f3; padding: 85px 0 70px; font-family: "Work Sans", Arial, Helvetica, sans-serif; }
.tax-results-container { width: min(1220px, 92%); margin: 0 auto; }
.tax-results-top { max-width: 760px; margin-bottom: 55px; }
.tax-results-label { display: inline-flex; align-items: center; gap: 12px; color: #222; font-size: 16px; font-weight: 400; margin-bottom: 16px; }
.tax-results-label span { width: 50px; height: 2px; background: #68ddd4; display: inline-block; }
.tax-results-title { font-family: "Playfair Display", Georgia, serif; margin: 0 0 22px; font-size: 54px; line-height: 1.1; font-weight: 300; color: #1e1e1e; letter-spacing: -0.5px; }
.tax-results-desc { max-width: 720px; margin: 0; font-size: 17px; line-height: 1.7; color: #222; font-weight: 400; }
.tax-results-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; align-items: start; }
.tax-result-item { text-align: left; }
.tax-ring-icon { margin-bottom: 26px; }
.tax-ring { width: 168px; height: 168px; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; background: conic-gradient(#334e92 0deg 320deg, #e8e8e8 320deg 360deg); }
.tax-ring::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #f3f3f3; }
.tax-ring i { position: relative; z-index: 2; font-size: 62px; line-height: 1; color: #67ddd4; }
.tax-result-item h4 { margin: 0 0 16px; font-size: 25px; line-height: 1.25; font-weight: 300; color: #222; }
.tax-result-item p { margin: 0; font-size: 16px; line-height: 1.75; color: #1f1f1f; font-weight: 400; }

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section { background: #f3f3f3; padding: 85px 0 70px; font-family: "Work Sans", Arial, Helvetica, sans-serif; }
.contact-info-container { width: min(1220px, 92%); margin: 0 auto; }
.contact-info-top { max-width: 760px; margin-bottom: 48px; }
.contact-info-label { display: inline-flex; align-items: center; gap: 12px; color: #1f1f1f; font-size: 16px; font-weight: 400; margin-bottom: 16px; }
.contact-info-label span { width: 50px; height: 2px; background: #67ddd4; display: inline-block; }
.contact-info-title { font-family: "Playfair Display", Georgia, serif; margin: 0 0 20px; font-size: 54px; line-height: 1.08; font-weight: 300; color: #1f1f1f; letter-spacing: -0.5px; }
.contact-info-desc { margin: 0; max-width: 720px; font-size: 17px; line-height: 1.7; color: #222; font-weight: 400; }
.contact-info-divider { width: 100%; height: 1px; background: #d8d8d8; margin: 42px 0 56px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; align-items: start; }
.contact-box { display: flex; align-items: flex-start; gap: 22px; }
.contact-icon { width: 44px; min-width: 44px; display: flex; justify-content: center; align-items: flex-start; padding-top: 4px; }
.contact-icon i { font-size: 48px; line-height: 1; }
.contact-icon.navy i { color: #3d528e; }
.contact-icon.mint i { color: #67ddd4; }
.contact-text h4 { margin: 0 0 10px; font-size: 24px; line-height: 1.25; font-weight: 300; color: #1f1f1f; }
.contact-text p { margin: 0 0 4px; font-size: 16px; line-height: 1.55; color: #202020; font-weight: 400; }
.contact-text p:last-child { margin-bottom: 0; }

/* ===== BLOG SECTION ===== */
.blog-section { background: #fff; padding: 80px 0; }
.blog-section-header { text-align: center; margin-bottom: 50px; }
.blog-section-header .section-label { justify-content: center; }
.blog-section-header .section-label::before { display: none; }
.blog-section-header .section-title { text-align: center; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #fff; transition: box-shadow var(--transition), transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.blog-card-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-cat { position: absolute; top: 16px; left: 0; background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-body { padding: 24px 0 0; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.blog-date { font-size: 12px; color: var(--teal); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.blog-author { font-size: 12px; color: #999; }
.blog-card h3 { font-family: "Work Sans", Arial, Helvetica, sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; transition: color var(--transition); }
.blog-card:hover h3 { color: var(--teal); }
.blog-card p { font-size: 14px; color: #777; line-height: 1.7; margin-bottom: 14px; }
.blog-divider { height: 1px; background: #f0f0f0; margin: 16px 0; }

/* ===== FOOTER ===== */
.footer { background: #ffffff; border-top: none; font-family: "Work Sans", Arial, Helvetica, sans-serif; }
.footer-rule { width: 100%; height: 1px; background: #d8d8d8; margin: 0; display: block; }
.footer-main { padding: 72px 0 64px; background: #ffffff; }
.footer-main-inner { max-width: 1260px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1.45fr 1fr; gap: 80px; align-items: start; }
.footer-col-label { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 400; color: #666; margin-bottom: 10px; letter-spacing: 0.2px; }
.footer-label-line { display: inline-block; width: 30px; height: 2px; background: #50dec8; flex-shrink: 0; }
.footer-col-heading { font-family: "Work Sans", Arial, Helvetica, sans-serif; font-size: 30px; font-weight: 300; color: #191919; line-height: 1.18; margin: 0 0 20px; letter-spacing: -0.3px; }
.footer-hq-desc { font-size: 14px; font-weight: 400; color: #555; line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #444; line-height: 1.55; }
.footer-contact-icon-sm { color: #50dec8; font-size: 12px; margin-top: 3px; flex-shrink: 0; width: 14px; text-align: center; }
.footer-contact-list a { color: #444; text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: #50dec8; }
.footer-world-wrap { display: flex; flex-direction: row; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-world-svg { width: 260px; min-width: 200px; height: auto; display: block; flex-shrink: 0; }
.footer-social-desc { font-size: 14px; font-weight: 400; color: #555; line-height: 1.8; margin-bottom: 32px; max-width: 270px; }
.footer-social-icons { display: flex; gap: 24px; align-items: center; }
.footer-social-icon { font-size: 24px; color: #1f3a72; transition: color 0.2s, transform 0.2s; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.footer-social-icon:hover { color: #50dec8; transform: translateY(-2px); }
.footer-bottom-bar { border-top: 1px solid #e4e4e4; background: #ffffff; }
.footer-bottom-inner { max-width: 1260px; margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom-bar p { font-size: 13px; color: #666; font-weight: 400; }
.footer-bottom-bar p strong { font-weight: 700; color: #191919; }
.footer-bottom-nav { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-bottom-nav a { font-size: 13px; color: #555; text-decoration: none; font-weight: 400; transition: color 0.2s; }
.footer-bottom-nav a:hover { color: #50dec8; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-zoom { opacity: 0; transform: scale(0.92); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-zoom.revealed { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@keyframes revealFallback { to { opacity: 1; transform: none; } }
.reveal,.reveal-left,.reveal-right,.reveal-zoom { animation: revealFallback 0.01s 1.2s forwards; }
.reveal.revealed,.reveal-left.revealed,.reveal-right.revealed,.reveal-zoom.revealed { animation: none; opacity: 1; transform: none; }

/* ===== SIDEBAR MOBILE MENU ===== */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1100; opacity: 0; transition: opacity 0.3s ease; }
.sidebar-overlay.active { display: block; opacity: 1; }
.sidebar-menu { position: fixed; top: 0; left: -320px; width: 300px; max-width: 85vw; height: 100vh; background: #fff; z-index: 1200; overflow-y: auto; transition: left 0.35s cubic-bezier(0.16,1,0.3,1); box-shadow: 4px 0 30px rgba(0,0,0,0.15); display: flex; flex-direction: column; }
.sidebar-menu.open { left: 0; }
.sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0; }
.sidebar-logo-img { height: 42px; width: auto; object-fit: contain; }
.sidebar-close { width: 36px; height: 36px; background: var(--teal); color: #fff; border: none; border-radius: 2px; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); flex-shrink: 0; }
.sidebar-close:hover { background: var(--teal-dark); }
.sidebar-nav { flex: 1; padding: 10px 0 20px; overflow-y: auto; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-item { border-bottom: 1px solid #f0f0f0; }
.sidebar-item.active > .sidebar-link { background: var(--teal); color: #fff; }
.sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; transition: background var(--transition), color var(--transition); cursor: pointer; }
.sidebar-link:hover { background: #f5f5f5; color: var(--teal); }
.sidebar-arrow { font-size: 11px; color: #999; transition: transform 0.3s ease; flex-shrink: 0; }
.sidebar-item.sub-open > .sidebar-link .sidebar-arrow { transform: rotate(180deg); color: var(--teal); }
.sidebar-sub { list-style: none; padding: 0; margin: 0; max-height: 0; overflow: hidden; background: #f9f9f9; transition: max-height 0.3s ease; }
.sidebar-item.sub-open > .sidebar-sub { max-height: 400px; }
.sidebar-sub li a { display: block; padding: 11px 20px 11px 36px; font-size: 13px; color: #666; text-decoration: none; border-left: 3px solid transparent; transition: all var(--transition); }
.sidebar-sub li a:hover { color: var(--teal); border-left-color: var(--teal); background: #f0f0f0; }
.sidebar-phone { padding: 20px 20px 10px; border-top: 1px solid #f0f0f0; margin-top: 10px; }
.sidebar-phone a { display: flex; align-items: center; gap: 10px; background: var(--teal); color: #fff; padding: 12px 18px; border-radius: 3px; font-size: 14px; font-weight: 600; transition: background var(--transition); }
.sidebar-phone a:hover { background: var(--teal-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone-btn { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-main-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-social-col { grid-column: span 2; }
  .footer-world-wrap { flex-direction: column; }
  .footer-world-svg { width: 100%; max-width: 320px; }
  .logo-img-wrap { height: 60px; }
  .logo-img { max-width: 180px; }
  .tax-grid { gap: 42px 32px; }
  .tax-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 30px; }
  .tax-results-title { font-size: 46px; }
  .contact-info-title { font-size: 46px; }
  .contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 28px; }
  .tax-title { font-size: 46px; }
}
@media (max-width: 991px) {
  .tax-features-section { padding: 70px 0; }
  .tax-title { font-size: 40px; }
  .tax-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-fluid-wrap { flex-direction: column; min-height: auto; }
  .testimonial-left { width: 100%; padding: 60px 25px 30px; }
  .testimonial-right { position: relative; width: 100%; height: auto; padding: 0; justify-content: center; }
  .testimonial-right img { max-height: 420px; }
  .testimonial-title { font-size: 40px; }
  .testimonial-slide { padding: 25px 20px 30px 0; }
  .quote-right { right: 10px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner > div:first-child { display: none; }
  .hero-text { padding: 40px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wrap.offset { margin-top: 0; }
  .top-bar-inner { flex-direction: column; align-items: flex-start; min-height: auto; padding: 10px 20px; }
  .top-info { padding: 5px 0; border-right: none; }
  .top-bar-right { padding: 5px 0; }
  .tax-intro { margin-bottom: 35px; }
  .tax-title { font-size: 32px; }
  .tax-desc { font-size: 15px; line-height: 1.9; }
  .tax-divider { margin: 32px 0 38px; }
  .tax-grid { grid-template-columns: 1fr; gap: 34px; }
  .tax-item { gap: 18px; }
  .tax-icon-img-wrap { width: 58px; min-width: 58px; height: 58px; }
  .tax-img-icon { width: 52px; height: 52px; }
  .tax-content h4 { font-size: 22px; }
  .testimonial-left { padding: 45px 18px 20px; }
  .testimonial-title { font-size: 32px; }
  .testimonial-subtitle { font-size: 15px; margin-bottom: 35px; }
  .testimonial-text { font-size: 18px; line-height: 1.55; }
  .quote-bg { font-size: 120px; }
  .testimonial-right img { max-height: 320px; }
  .tax-results-section { padding: 65px 0 55px; }
  .tax-results-title { font-size: 34px; }
  .tax-results-desc { font-size: 15px; }
  .tax-results-grid { grid-template-columns: 1fr; gap: 35px; }
  .tax-ring { width: 145px; height: 145px; }
  .tax-ring::before { inset: 10px; }
  .tax-ring i { font-size: 54px; }
  .tax-result-item h4 { font-size: 22px; }
  .contact-info-section { padding: 65px 0 55px; }
  .contact-info-title { font-size: 34px; }
  .contact-info-desc { font-size: 15px; }
  .contact-info-divider { margin: 30px 0 36px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-box { gap: 18px; }
  .contact-icon i { font-size: 40px; }
  .contact-text h4 { font-size: 22px; }
  .service-card-img-icon { width: 56px; height: 56px; }
}
@media (max-width: 640px) {
  .logo-img-wrap { height: 48px; }
  .logo-img { max-width: 150px; }
  .footer-main { padding: 50px 0 44px; }
  .footer-main-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .footer-social-col { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 10px; }
  .footer-bottom-nav { gap: 14px; }
  .footer-col-heading { font-size: 24px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .tax-icon-img-wrap { width: 48px; min-width: 48px; height: 48px; }
  .tax-img-icon { width: 44px; height: 44px; }
}
@media (min-width: 1025px) {
  .sidebar-menu, .sidebar-overlay { display: none !important; }
}
/* ABOUT HERO */
.inner-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero {
  background: linear-gradient(135deg, rgba(80,222,200,0.18) 0%, rgba(46,70,130,0.55) 100%),
              url('https://avantage.bold-themes.com/accountant/wp-content/uploads/sites/6/2019/03/img-slider-02.jpg') center center / cover no-repeat;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.45);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 90px 0;
}

.section-label-light {
  color: rgba(255,255,255,0.85);
}

.section-label-light::before {
  background: var(--teal);
}

.inner-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.inner-breadcrumb a {
  color: #fff;
}

.inner-breadcrumb a:hover {
  color: var(--teal);
}

/* ABOUT COMPANY */
.about-company-section {
  padding: 90px 0;
  background: #fff;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-company-image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  min-height: 520px;
}

.about-company-sub {
  max-width: 100%;
  margin-bottom: 18px;
}

.about-company-text {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 28px;
}

.about-company-points {
  display: grid;
  gap: 14px;
}

.about-company-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}

.about-company-point i {
  color: var(--teal);
  font-size: 16px;
}

/* MISSION VISION VALUES */
.mvv-section {
  background: var(--gray-bg);
  padding: 85px 0;
}

.mvv-top {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 50px;
}

.mvv-top .section-label {
  justify-content: center;
}

.mvv-top .section-title {
  text-align: center;
}

.mvv-top .section-sub {
  max-width: 720px;
  margin: 0 auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: #fff;
  padding: 38px 28px 32px;
  border-radius: 2px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.mvv-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(80,222,200,0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.mvv-card h3 {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}

.mvv-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

/* WHY CHOOSE */
.why-choose-section {
  background: #fff;
  padding: 90px 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.why-choose-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #f8f8f8;
  border-left: 3px solid var(--teal);
  color: var(--navy);
  font-size: 15px;
  line-height: 1.7;
}

.why-choose-item i {
  color: var(--teal);
  margin-top: 5px;
}

.why-choose-right {
  display: grid;
  gap: 22px;
}

.why-box {
  background: linear-gradient(135deg, rgba(80,222,200,0.08) 0%, rgba(46,70,130,0.08) 100%);
  border: 1px solid rgba(46,70,130,0.08);
  padding: 28px 26px;
}

.why-box h3 {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

/* ABOUT SERVICES */
.about-services-section {
  background: var(--gray-bg);
  padding: 90px 0;
}

.about-services-top {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 55px;
}

.about-services-top .section-label {
  justify-content: center;
}

.about-services-top .section-title {
  text-align: center;
}

.about-services-top .section-sub {
  max-width: 740px;
  margin: 0 auto;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-category-card {
  background: #fff;
  padding: 32px 26px 28px;
  border-radius: 2px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.service-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.service-category-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(80,222,200,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 24px;
  margin-bottom: 18px;
}

.service-category-card h3 {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.service-category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-category-card ul li {
  position: relative;
  padding-left: 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.service-category-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 9px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-company-grid,
  .why-choose-grid,
  .mvv-grid,
  .about-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 320px;
  }

  .inner-hero-content {
    padding: 70px 0;
  }

  .about-company-grid,
  .mvv-grid,
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-company-image img {
    min-height: auto;
  }

  .about-company-section,
  .mvv-section,
  .why-choose-section,
  .about-services-section {
    padding: 65px 0;
  }
}

/* SAFETY FALLBACK — show reveal elements if JS fails */
@keyframes revealFallback {
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  animation: revealFallback 0.01s 1.2s forwards;
}

/* Once JS works, the animation does nothing because .revealed overrides */
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-zoom.revealed {
  animation: none;
  opacity: 1;
  transform: none;
}


/* ===== NEW FOOTER (3-col: HQ | Map | Social) ===== */
.footer {
  background: #ffffff;
  border-top: none;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

/* Full-width thin gray divider line – exactly like the image */
.footer-rule {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin: 0;
  display: block;
}

.footer-main {
  padding: 72px 0 64px;
  background: #ffffff;
}

.footer-main-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Column label (teal line + small text) – exactly like image */
.footer-col-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.footer-label-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #50dec8;
  flex-shrink: 0;
}

/* Column heading – Work Sans light 300, same as image */
.footer-col-heading {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #191919;
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

/* ─── COL 1: HQ ─── */
.footer-hq-desc {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}

.footer-contact-icon-sm {
  color: #50dec8;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-contact-list a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: #50dec8;
}

/* ─── COL 2: Map ─── */
.footer-map-col {}

.footer-world-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-world-svg {
  width: 260px;
  min-width: 200px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.footer-office-list {
  list-style: none;
  padding: 0;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 160px;
}

.footer-office-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.footer-office-list li i {
  color: #50dec8;
  font-size: 12px;
  flex-shrink: 0;
  width: 13px;
}

/* ─── COL 3: Social ─── */
.footer-social-col {}

.footer-social-desc {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 270px;
}

.footer-social-icons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social-icon {
  font-size: 24px;
  color: #1f3a72;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-icon:hover {
  color: #50dec8;
  transform: translateY(-2px);
}

/* ─── Bottom copyright bar ─── */
.footer-bottom-bar {
  border-top: 1px solid #e4e4e4;
  background: #ffffff;
}

.footer-bottom-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-bar p {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.footer-bottom-bar p strong {
  font-weight: 700;
  color: #191919;
}

.footer-bottom-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-nav a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-bottom-nav a:hover {
  color: #50dec8;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-social-col {
    grid-column: span 2;
  }
  .footer-world-wrap {
    flex-direction: column;
  }
  .footer-world-svg {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 50px 0 44px;
  }
  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }
  .footer-social-col {
    grid-column: span 1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 10px;
  }
  .footer-bottom-nav {
    gap: 14px;
  }
  .footer-col-heading {
    font-size: 24px;
  }
}


/* ===== SERVICE CARD – PNG image icon (replaces SVG) ===== */
.service-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

/* On hover show icon more visibly */
.service-card:hover .service-card-icon {
  opacity: 0.6;
}

/* ===== TAX FEATURES SECTION – PNG image icon ===== */
.tax-icon-img-wrap {
  width: 72px;
  min-width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tax-img-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.tax-item:hover .tax-img-icon {
  transform: scale(1.08);
}

/* Responsive: shrink icons on mobile */
@media (max-width: 767px) {
  .service-card-img-icon {
    width: 56px;
    height: 56px;
  }
  .tax-icon-img-wrap {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }
  .tax-img-icon {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .tax-icon-img-wrap {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
  .tax-img-icon {
    width: 44px;
    height: 44px;
  }
}


/* ===== LOGO – PNG image (bigger & clear, matches header height) ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;          /* fills the 80px header with breathing room */
  padding: 6px 0;
}

.logo-img {
  height: 100%;          /* auto-scales to 68px tall */
  width: auto;
  max-width: 220px;      /* never too wide */
  object-fit: contain;
  display: block;
  /* Crisp rendering – important for logos */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Shrink slightly on scroll (sticky header) */
.main-header.shrunk .logo-img-wrap {
  height: 52px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .logo-img-wrap {
    height: 60px;
  }
  .logo-img {
    max-width: 180px;
  }
}

@media (max-width: 640px) {
  .logo-img-wrap {
    height: 48px;
  }
  .logo-img {
    max-width: 150px;
  }
}

/* Remove old icon/text logo styles that no longer apply */
.logo-icon { display: none; }
.logo-text { display: none; }


