/*
Theme Name: Full Tax
Theme URI: https://fulltax.in
Author: Full Tax Team
Author URI: https://fulltax.in
Description: A professional WordPress theme for Full Tax - Complete Tax & Business Solutions. Features include service showcases, pricing tables, testimonials, and contact forms.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fulltax
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, theme-options, translation-ready, business
*/

/* ===========================
   CSS Variables / Design Tokens
   =========================== */
:root {
  /* Colors */
  --ft-primary: hsl(210, 70%, 25%);
  --ft-primary-light: hsl(210, 70%, 30%);
  --ft-primary-dark: hsl(210, 70%, 20%);
  --ft-primary-foreground: hsl(0, 0%, 100%);
  
  --ft-secondary: hsl(175, 50%, 35%);
  --ft-secondary-foreground: hsl(0, 0%, 100%);
  
  --ft-accent: hsl(40, 80%, 55%);
  --ft-accent-dark: hsl(35, 85%, 50%);
  --ft-accent-foreground: hsl(220, 30%, 15%);
  
  --ft-background: hsl(210, 20%, 98%);
  --ft-foreground: hsl(220, 30%, 15%);
  
  --ft-card: hsl(0, 0%, 100%);
  --ft-card-foreground: hsl(220, 30%, 15%);
  
  --ft-muted: hsl(210, 20%, 94%);
  --ft-muted-foreground: hsl(220, 15%, 45%);
  
  --ft-border: hsl(210, 20%, 88%);
  
  /* Gradients */
  --ft-gradient-hero: linear-gradient(135deg, hsl(210, 70%, 20%) 0%, hsl(210, 70%, 30%) 50%, hsl(175, 50%, 30%) 100%);
  --ft-gradient-accent: linear-gradient(135deg, hsl(40, 80%, 55%) 0%, hsl(35, 85%, 50%) 100%);
  
  /* Shadows */
  --ft-shadow-soft: 0 4px 20px -2px hsla(220, 30%, 15%, 0.08);
  --ft-shadow-card: 0 8px 30px -4px hsla(220, 30%, 15%, 0.1);
  --ft-shadow-elevated: 0 20px 50px -10px hsla(220, 30%, 15%, 0.15);
  
  /* Typography */
  --ft-font-display: 'Playfair Display', Georgia, serif;
  --ft-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --ft-radius: 0.75rem;
}

/* ===========================
   Reset & Base Styles
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ft-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-foreground);
  background-color: var(--ft-background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ft-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ft-foreground);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--ft-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ft-secondary);
}

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

ul, ol {
  list-style: none;
}

/* ===========================
   Layout Utilities
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section--muted {
  background-color: var(--ft-muted);
}

.text-center {
  text-align: center;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--ft-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--ft-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--ft-gradient-hero);
  color: var(--ft-primary-foreground);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--ft-shadow-card);
}

.btn--accent {
  background: var(--ft-gradient-accent);
  color: var(--ft-accent-foreground);
}

.btn--accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--ft-border);
  color: var(--ft-foreground);
}

.btn--outline:hover {
  border-color: var(--ft-primary);
  color: var(--ft-primary);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

/* ===========================
   Header / Navigation
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--ft-shadow-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--ft-gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-primary-foreground);
  font-family: var(--ft-font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.site-logo__text {
  font-family: var(--ft-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ft-primary);
}

.site-logo__text span {
  color: var(--ft-secondary);
}

.main-nav {
  display: none;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav__link {
  color: var(--ft-muted-foreground);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--ft-primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-cta__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ft-primary);
  font-weight: 500;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ft-foreground);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--ft-border);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav__link {
  display: block;
  padding: 0.5rem 0;
  color: var(--ft-muted-foreground);
  font-weight: 500;
}

@media (min-width: 768px) {
  .main-nav,
  .header-cta {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(210, 70%, 25%, 0.95) 0%, hsla(210, 70%, 25%, 0.8) 50%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(40, 80%, 55%, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ft-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__badge-text {
  color: var(--ft-primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-size: 2.5rem;
  color: var(--ft-primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title-accent {
  display: block;
  color: var(--ft-accent);
}

.hero__description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 450px;
}

.hero__highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__highlight svg {
  width: 20px;
  height: 20px;
  color: var(--ft-accent);
  flex-shrink: 0;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--ft-background), transparent);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }
  
  .hero__buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsla(210, 70%, 25%, 0.1);
  color: var(--ft-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__description {
  font-size: 1.125rem;
  color: var(--ft-muted-foreground);
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--ft-card);
  border-radius: var(--ft-radius);
  padding: 2rem;
  box-shadow: var(--ft-shadow-soft);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ft-shadow-elevated);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--ft-gradient-hero);
  border-radius: var(--ft-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--ft-primary-foreground);
}

.service-card__title {
  margin-bottom: 0.75rem;
}

.service-card__description {
  color: var(--ft-muted-foreground);
  margin-bottom: 1.5rem;
}

.service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-card__feature {
  padding: 0.25rem 0.75rem;
  background: var(--ft-muted);
  color: var(--ft-muted-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.pricing-tab {
  padding: 0.625rem 1rem;
  background: var(--ft-muted);
  color: var(--ft-muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-tab:hover {
  background: hsla(210, 20%, 90%, 1);
}

.pricing-tab.is-active {
  background: var(--ft-gradient-hero);
  color: var(--ft-primary-foreground);
  box-shadow: var(--ft-shadow-soft);
}

.pricing-panel {
  display: none;
}

.pricing-panel.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--ft-card);
  border-radius: var(--ft-radius);
  padding: 2rem;
  box-shadow: var(--ft-shadow-soft);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ft-shadow-elevated);
}

.pricing-card--popular {
  border: 2px solid var(--ft-primary);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--ft-gradient-accent);
  color: var(--ft-accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card__name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.pricing-card__subtitle {
  color: var(--ft-muted-foreground);
  font-size: 0.875rem;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card__price-symbol {
  font-size: 1.125rem;
  color: var(--ft-muted-foreground);
}

.pricing-card__price-value {
  font-family: var(--ft-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ft-primary);
}

.pricing-card__price-suffix {
  font-size: 0.875rem;
  color: var(--ft-muted-foreground);
}

.pricing-card__features {
  margin-bottom: 1.5rem;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--ft-muted-foreground);
  font-size: 0.875rem;
}

.pricing-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--ft-secondary);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--ft-muted-foreground);
  font-size: 0.875rem;
}

.pricing-note a {
  color: var(--ft-primary);
}

.pricing-note a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--ft-card);
  border-radius: var(--ft-radius);
  padding: 2rem;
  box-shadow: var(--ft-shadow-soft);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  color: var(--ft-accent);
  fill: var(--ft-accent);
}

.testimonial-card__text {
  color: var(--ft-muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--ft-gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-primary-foreground);
  font-weight: 600;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--ft-foreground);
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--ft-muted-foreground);
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   Contact Section
   =========================== */
.contact-wrapper {
  display: grid;
  gap: 3rem;
}

.contact-info__title {
  margin-bottom: 1rem;
}

.contact-info__description {
  color: var(--ft-muted-foreground);
  margin-bottom: 2rem;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: hsla(210, 70%, 25%, 0.1);
  border-radius: var(--ft-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  color: var(--ft-primary);
}

.contact-info__label {
  font-weight: 600;
  color: var(--ft-foreground);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  color: var(--ft-muted-foreground);
}

.contact-form {
  background: var(--ft-card);
  border-radius: var(--ft-radius);
  padding: 2rem;
  box-shadow: var(--ft-shadow-card);
}

.contact-form__title {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ft-foreground);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--ft-background);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  font-family: var(--ft-font-body);
  font-size: 1rem;
  color: var(--ft-foreground);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ft-primary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--ft-foreground);
  color: hsla(0, 0%, 100%, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand__icon {
  width: 40px;
  height: 40px;
  background: var(--ft-gradient-hero);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-primary-foreground);
  font-family: var(--ft-font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-brand__text {
  font-family: var(--ft-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ft-primary-foreground);
}

.footer-brand__text span {
  color: var(--ft-secondary);
}

.footer-brand__description {
  color: hsla(0, 0%, 100%, 0.6);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-primary-foreground);
  transition: background 0.2s ease;
}

.footer-social__link:hover {
  background: var(--ft-primary);
}

.footer-links__title {
  font-family: var(--ft-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ft-primary-foreground);
  margin-bottom: 1.25rem;
}

.footer-links__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links__link {
  color: hsla(0, 0%, 100%, 0.6);
  transition: color 0.2s ease;
}

.footer-links__link:hover {
  color: var(--ft-primary-foreground);
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-bottom__copyright {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
}

.footer-bottom__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-bottom__link {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
}

.footer-bottom__link:hover {
  color: var(--ft-primary-foreground);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ===========================
   WhatsApp Float Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* ===========================
   WordPress Specific
   =========================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
