/* ==========================================================================
   premium CA website styles
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --bg-primary: #faf9f6;      /* Warm Alabaster (neutral off-white) */
    --bg-secondary: #f4f2ed;    /* Warm Cream */
    --bg-card: #ffffff;         /* Pure white cards */
    --border-card: rgba(13, 58, 95, 0.12); /* Subtle navy borders */
    --text-primary: #111111;     /* Near-black body text (editorial style) */
    --text-secondary: #4a4a4a;   /* Dark charcoal body text */
    --text-muted: #767676;       /* Gray */
    
    --color-gold: #0d3a5f;       /* Deep Navy Accent */
    --color-gold-hover: #07253e; /* Darker Navy for hover */
    --color-teal: #0d3a5f;       /* Accent color instead of green/teal */
    --color-teal-glow: rgba(13, 58, 95, 0.04);
    
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-premium: 0 4px 12px rgba(13, 58, 95, 0.03); /* Flat/border style, very subtle shadow */
    --shadow-gold: none; /* No tech glow */
    --border-radius: 4px; /* Shaper corner, conservative */
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Contact Bar (inspired by trchadha.com) */
.top-bar {
    background: #0d3a5f; /* Deep blue-navy */
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
}

.top-bar-contact span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.top-bar-links {
    display: flex;
    gap: 1.2rem;
}

.top-bar-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.top-bar-links a:hover {
    color: var(--color-gold);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(13, 58, 95, 0.15);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography Utility Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.75;
}

.text-gradient {
    color: var(--color-gold);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: initial;
}

.text-gold {
    color: var(--color-gold);
}

.text-teal {
    color: var(--color-gold);
}

.text-white {
    color: var(--text-primary);
}

/* Button & Badge Utility Classes */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px; /* Refined corporate rectangle */
    background: rgba(13, 58, 95, 0.04);
    border: 1px solid rgba(13, 58, 95, 0.15);
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 4px; /* Refined corporate rectangle */
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-gold {
    background: var(--color-gold);
    color: #ffffff;
    border: 1px solid var(--color-gold);
    box-shadow: none;
}

.btn-gold:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-1px);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(13, 58, 95, 0.2);
}

.btn-outline:hover {
    background: rgba(13, 58, 95, 0.03);
    border-color: rgba(13, 58, 95, 0.4);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* Glassmorphism Card base */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(0, 122, 135, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 135, 0.03) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--transition-slow);
}

.glass-card:hover .card-glow {
    transform: translate(5%, 5%);
}

/* Header & Floating Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.2rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-card);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(252, 251, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 58, 95, 0.08);
    box-shadow: 0 10px 30px rgba(13, 58, 95, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.1;
}

.logo-main {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-text-gold {
    color: var(--color-gold);
    font-family: var(--font-heading);
    white-space: nowrap;
}

.logo-text-white {
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-left: 0.2rem;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 4px;
}

.footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-nav {
    padding: 0.5rem 1.2rem;
    font-size: 0.78rem;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: var(--bg-primary);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(223, 192, 109, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-editorial-subtext {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hero-credentials-strip {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-credentials-strip .dot-separator {
    color: var(--color-gold);
    font-weight: bold;
}

.hero-portrait-wrapper {
    position: relative;
    border: 1px solid var(--border-card);
    padding: 8px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    max-width: 360px;
    margin-left: auto;
}

.hero-portrait-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--border-radius) - 2px);
    filter: grayscale(10%);
}

/* Section Header Utility */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(13, 58, 95, 0.12);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 122, 135, 0.06);
    border: 1px solid rgba(0, 122, 135, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 1.8rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-gold);
    color: #ffffff;
    transform: scale(1.05);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.arrow-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.service-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* Interactive Calculator Section */
.calculator-sec {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.8rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.input-with-symbol {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 2.2rem;
    background: #ffffff;
    border: 1px solid rgba(15, 33, 55, 0.12);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-gold);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(14, 116, 144, 0.15);
}

.help-text {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.calc-results-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    height: 100%;
    padding: 2.5rem;
}

.results-main {
    display: none; /* Hide dashboard card to use flat table instead */
}

.results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 8px;
}

.breakdown-item span:first-child {
    font-weight: 500;
}

.breakdown-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.breakdown-item.bold {
    font-size: 1.1rem;
    border-top: 1px solid var(--border-card);
    border-bottom: 3px double var(--color-gold);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

.breakdown-item.bold span:first-child {
    color: var(--color-gold);
    font-weight: 700;
}

.breakdown-item.bold span:last-child {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 700;
}

.calc-notes {
    background: var(--bg-secondary);
    border-left: 3px solid var(--color-gold);
    padding: 1.2rem;
    border-radius: 4px;
}

.note-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
    display: block;
    margin-bottom: 6px;
}

.calc-notes p {
    font-size: 0.8rem;
    line-height: 1.45;
}

.calc-disclaimer-text {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2rem;
    text-align: center;
}

/* Service Card serif numerals */
.service-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.35;
    margin-bottom: 0.8rem;
    display: block;
}

/* Services section closing note */
.services-closing-note {
    max-width: 800px;
    margin: 3.5rem auto 0 auto;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--border-radius);
    text-align: center;
}

.services-closing-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Footer Compliance Credentials styling */
.footer-credentials-prominent {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-credentials-prominent .bullet-divider {
    color: var(--color-gold);
    opacity: 0.7;
}

.general-disclaimer-text {
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.about-main-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: start;
}

.founder-portrait-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius);
    padding: 1.4rem;
    box-shadow: var(--shadow-premium);
}

.portrait-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.founder-photo {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.founder-portrait-card:hover .founder-photo {
    transform: scale(1.02);
}

.credentials-overlay-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(13, 58, 95, 0) 0%, rgba(13, 58, 95, 0.95) 100%);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.4;
}

.cred-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cred-subtitle {
    font-size: 0.72rem;
    opacity: 0.85;
    margin-top: 4px;
}

.founder-bio-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.qualifications-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.qual-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    background: rgba(0, 122, 135, 0.06);
    border: 1px solid rgba(0, 122, 135, 0.12);
    color: var(--color-gold);
    border-radius: 4px;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.founder-bio-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Secondary Details Grid */
.founder-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: start;
}

.founder-milestones-column h3, .founder-values-column h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.founder-milestones-column h3::after, .founder-values-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-gold);
}

.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.milestone-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(13, 58, 95, 0.01);
    transition: var(--transition-normal);
}

.milestone-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-premium);
}

.milestone-year {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.milestone-desc h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.milestone-desc p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* Practice Values */
.values-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.practice-value-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(13, 58, 95, 0.01);
    transition: var(--transition-normal);
}

.practice-value-item:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-premium);
}

.value-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.value-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

.value-head h4 {
    font-size: 0.98rem;
    color: var(--text-primary);
    margin: 0;
}

.practice-value-item p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

/* Team Section styling */
.team {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.leader-profile-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 260px;
}

.leader-avatar-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid var(--border-card);
    padding: 6px;
    background: var(--bg-card);
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%);
}

.leader-profile-simple h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.leader-occupation {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services Tabs styling */
.services-tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 1rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-gold);
}

.tab-btn.active {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    background: transparent;
}

.services-tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

.service-card-new {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.2rem;
}

.service-card-new h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.card-lead {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.service-card-new p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.card-details-box {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 1.2rem;
    border-left: 3px solid var(--color-gold);
}

.card-details-box strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.card-details-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-details-box li {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-secondary);
    position: relative;
    padding-left: 12px;
}

.card-details-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Our Approach / Timeline styling */
.approach {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.timeline-vertical {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border-card);
}

.timeline-step {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-badge {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.step-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-normal);
}

.step-card:hover {
    border-color: var(--color-gold);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Resources / Insights grid styling */
.resources {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

.resource-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.resource-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.resource-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-primary);
    flex-grow: 1;
}

.resource-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.resource-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}



/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.faq-intro p {
    margin-bottom: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.faq-trigger span:first-child {
    padding-right: 1.5rem;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    line-height: 1;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-content p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.contact-info-panel p {
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 122, 135, 0.05);
    border: 1px solid rgba(0, 122, 135, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail-item span {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
}

.contact-detail-item p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form-card {
    padding: 3rem;
}

.contact-form-card h3 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form-card .form-group input, 
.contact-form-card .form-group select, 
.contact-form-card .form-group textarea {
    padding-left: 1.2rem;
}

/* Form Submit Feedback */
.form-feedback {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1.8rem;
    margin-top: 1rem;
    animation: slideIn 0.4s ease-out;
}

.form-feedback.hidden {
    display: none;
}

.feedback-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-teal);
    color: #060a13;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feedback-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 2px;
}

.feedback-text p {
    font-size: 0.8rem;
    margin: 0;
}

/* Footer Section */
.footer {
    background-color: #0d3a5f;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer .logo-text-white {
    color: #ffffff;
}

.footer .logo-text-gold {
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 50px;
}

.footer-brand-side .logo {
    margin-bottom: 1.5rem;
}

.footer-brand-side p {
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-links-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links-column h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-column a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.compliance-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    max-width: fit-content;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.icai-disclaimer-text {
    font-style: italic;
    line-height: 1.5;
}

/* Animations */
/* By default, reveal elements are fully visible so content works if JS fails/is disabled */
.reveal {
    opacity: 1;
    transform: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

/* Only apply initial hidden states when JS is enabled */
body.js-enabled .reveal {
    opacity: 0;
}
body.js-enabled .reveal.fade-up {
    transform: translateY(40px);
}
body.js-enabled .reveal.fade-left {
    transform: translateX(-40px);
}
body.js-enabled .reveal.fade-right {
    transform: translateX(40px);
}

body.js-enabled .reveal.active {
    opacity: 1;
    transform: none;
}

/* Delay helpers */
.reveal[style*="--delay"] {
    transition-delay: var(--delay);
}

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

/* Responsive Breakpoints */
@media (max-width: 1150px) {
    /* Responsive Header & Navigation */
    .navbar {
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-nav {
        display: none; /* In mobile menu trigger instead */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-bio-content {
        text-align: center;
    }
    
    .qualifications-strip {
        justify-content: center;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile Layout (inspired by trchadha.com) */
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-contact {
        flex-direction: column;
        gap: 6px;
    }
    
    .top-bar-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .milestone-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-side {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 2.4rem;
    }
    
    .faq-trigger {
        padding: 1.2rem;
    }
    
    .faq-trigger span:first-child {
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        padding: 1.8rem;
    }
}

/* Blog Article Page styling */
.article-page {
    padding: 60px 0 100px 0;
    background-color: var(--bg-primary);
}

.article-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 2rem;
}

.article-header .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.article-header .back-btn:hover {
    color: var(--color-gold-hover);
    transform: translateX(-4px);
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.article-meta-bar {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    align-items: center;
}

.author-chip {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.article-featured-image {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-premium);
    line-height: 0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content p {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

.article-content h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1.2rem 0;
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-content blockquote {
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.15rem;
}

.article-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-card);
    text-align: center;
}

.article-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.article-cta-box p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Connect Links Styling */
.contact-social-channels {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-card);
    padding-top: 1.5rem;
}

.contact-social-channels > span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
}

.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.social-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 58, 95, 0.03);
}

.social-icon-btn:hover svg {
    color: var(--color-gold-hover);
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-social-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

/* Contact Map Styling */
.contact-map-container {
    width: 100%;
}

.map-card {
    padding: 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    line-height: 0;
}

.map-card iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 8px;
    filter: grayscale(15%) contrast(95%);
    transition: filter var(--transition-normal);
}

.map-card iframe:hover {
    filter: none;
}

/* WhatsApp Redirection Button Styles */
.btn-whatsapp {
    background-color: #25d366 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
    transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
    background-color: #20ba5a !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   MEGA MENU & MODERN SERVICES GRID (Like kcmehta.com/services/)
   ========================================================================== */

/* Parent navbar container needs position: relative for full width menu */
.nav-container {
    position: relative;
}

/* Mega Menu Dropdown Container */
.nav-item-dropdown {
    display: flex;
    align-items: center;
}

/* Dropdown Arrow */
.dropdown-arrow {
    display: none;
}

/* Mega Menu Dropdown Panel (Desktop only) */
@media (min-width: 1025px) {
    .nav-item-dropdown {
        position: static;
    }
    
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--bg-primary);
        border: 1px solid var(--border-card);
        box-shadow: 0 15px 40px rgba(13, 58, 95, 0.12);
        border-radius: var(--border-radius);
        padding: 2.5rem 3rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        pointer-events: auto;
    }
    
    .nav-item-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mega-menu-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .mega-column h4 {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--color-gold);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid var(--border-card);
        padding-bottom: 0.5rem;
    }
    
    .mega-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mega-column ul li {
        margin-bottom: 0.75rem;
    }
    
    .mega-column ul li a {
        font-size: 0.82rem;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline-block;
        line-height: 1.4;
    }
    
    .mega-column ul li a:hover {
        color: var(--color-gold);
        transform: translateX(4px);
    }
    
    .dropdown-arrow {
        display: inline-block;
        font-size: 0.55rem;
        margin-left: 4px;
        transition: transform 0.2s ease;
        opacity: 0.7;
    }
    
    .nav-item-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        display: none !important;
    }
    .dropdown-arrow {
        display: none !important;
    }
}

/* Modern Services Grid Section */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 991px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
}

.service-modern-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-card);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.service-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 58, 95, 0.08);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 168, 128, 0.1);
    color: var(--color-gold);
    border-radius: 8px;
    flex-shrink: 0;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
}

.service-modern-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin: 0;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: auto;
}

.service-card-list li {
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.25s ease;
}

.service-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-weight: 700;
    transition: transform 0.25s ease;
}

.service-card-list li:hover::before {
    transform: translateX(4px);
}

.service-card-list li strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.service-card-list li:hover strong {
    color: var(--color-gold);
}

.service-card-list li span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

