/* 
 * TaxEnrich Consultants — Main Stylesheet
 * "Simplifying Tax, Enriching Lives."
 * =========================================
 */

/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
    --navy: #05192D;
    --navy-mid: #0A2647;
    --blue: #144272;
    --teal: #189AB4;
    --teal-light: #75E6DA;
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --white: #FFFFFF;
    --off-white: #F4F7FA;
    --text-muted: #8A9BB0;
    --text-light: #C8D8E8;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --card-bg: rgba(10, 38, 71, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 9999;
    transition: width 0.1s;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(5, 25, 45, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white !important;
    padding: 0.65rem 1.6rem;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(20, 66, 114, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(24, 154, 180, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 30% 40% at 80% 10%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(24, 154, 180, 0.1);
    border: 1px solid rgba(24, 154, 180, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-title .accent {
    color: var(--teal);
    font-style: italic;
}

.hero-tagline {
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.9s 0.35s ease both;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
    animation: fadeInUp 0.9s 0.45s ease both;
}

.hero-desc strong {
    color: var(--teal-light);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s 0.55s ease both;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(24, 154, 180, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: fadeInUp 0.9s 0.65s ease both;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat-num span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== HERO VISUAL CARD ===== */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s 0.3s ease both;
}

.hero-card-main {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

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

.card-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
}

.card-title-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
}

.card-title-wrap p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.compliance-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(24, 154, 180, 0.15);
    border: 1px solid rgba(24, 154, 180, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--teal);
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.floating-pill {
    position: absolute;
    background: var(--navy);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.pill-1 {
    top: -15px;
    right: -15px;
    color: var(--teal-light);
}

.pill-2 {
    bottom: -15px;
    left: -15px;
    color: var(--gold-light);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== SHARED SECTION STYLES ===== */
section {
    padding: 100px 0;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--teal);
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--teal);
    font-style: italic;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
}

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 0;
}

/* ===== WHY COMPLIANCE MATTERS ===== */
.why-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 154, 180, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-text strong {
    color: var(--teal-light);
}

.why-highlight {
    background: linear-gradient(135deg, rgba(24, 154, 180, 0.1), rgba(20, 66, 114, 0.2));
    border: 1px solid rgba(24, 154, 180, 0.2);
    border-left: 3px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.8rem;
    margin-top: 2rem;
}

.why-highlight p {
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
}

.why-highlight strong {
    color: var(--gold-light);
    font-style: normal;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.risk-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s, border-color 0.3s;
}

.risk-card:hover {
    transform: translateX(8px);
    border-color: rgba(24, 154, 180, 0.35);
}

.risk-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.risk-icon {
    width: 36px;
    height: 36px;
    background: rgba(24, 154, 180, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.risk-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.risk-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== COMPLIANCE APPROACH ===== */
.approach-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-header .section-label {
    justify-content: center;
}

.approach-header .section-label::before {
    display: none;
}

.approach-header .section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--teal);
    display: block;
}

.approach-header .section-subtitle {
    margin: 0 auto;
    text-align: center;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.approach-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
    z-index: 0;
}

.approach-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--navy-mid);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    transition: all 0.3s;
    position: relative;
}

.approach-step:hover .step-num {
    background: var(--teal);
    box-shadow: 0 0 25px rgba(24, 154, 180, 0.4);
}

.step-body h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step-body p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--navy);
}

.services-header {
    margin-bottom: 3.5rem;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.2rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 154, 180, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.s-icon {
    width: 52px;
    height: 52px;
    background: rgba(24, 154, 180, 0.1);
    border: 1px solid rgba(24, 154, 180, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card .s-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--teal);
    text-decoration: none;
    margin-top: 1.2rem;
    font-weight: 600;
    transition: gap 0.3s;
}

.service-card:hover .s-link {
    gap: 0.8rem;
}

/* ===== COMMITMENT ===== */
.commitment-section {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.commitment-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.commit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.commit-card:hover {
    background: rgba(24, 154, 180, 0.08);
    border-color: rgba(24, 154, 180, 0.3);
    transform: translateY(-4px);
}

.commit-card:first-child {
    grid-column: span 2;
}

.commit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.commit-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.commit-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.commitment-content .why-text {
    margin-bottom: 1rem;
}

.commit-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.commit-feat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.commit-feat::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.about-profile {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    position: sticky;
    top: 100px;
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.profile-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.profile-title {
    font-size: 0.82rem;
    color: var(--teal-light);
    margin-top: 2px;
}

.profile-company {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.profile-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.profile-desc strong {
    color: var(--teal-light);
    font-weight: 600;
}

.highlights-box {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
}

.highlights-box h5 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.9rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 0;
    font-size: 0.83rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item:last-child {
    border-bottom: none;
}

.about-block {
    margin-bottom: 2.5rem;
}

.about-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.about-block p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.about-block p strong {
    color: var(--teal-light);
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

/* .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-item span:first-child {
    font-size: 1rem;
} */

/* ===== BOOK APPOINTMENT ===== */
.book-section {
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    position: relative;
    overflow: hidden;
}

.book-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 154, 180, 0.08) 0%, transparent 70%);
}

.book-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.book-content .section-subtitle {
    max-width: 420px;
}

.book-tagline {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-light);
    margin: 1rem 0 2rem;
}

.book-form {
    background: rgba(5, 25, 45, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.book-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(24, 154, 180, 0.1);
}

.form-group select option {
    background: var(--navy-mid);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(24, 154, 180, 0.35);
}

.btn-submit.success {
    background: #10B981;
    pointer-events: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-mid);
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MOBILE NAVIGATION ===== */
.nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: var(--navy-mid);
    padding: 5rem 2rem 2rem;
    border-left: 1px solid var(--glass-border);
    z-index: 998;
    gap: 1.5rem;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 991px) {
    .hero-inner,
    .why-grid,
    .commitment-grid,
    .about-grid,
    .book-inner {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .approach-grid::before {
        display: none;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-profile {
        position: static;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .commitment-visual {
        grid-template-columns: 1fr;
    }

    .commit-card:first-child {
        grid-column: span 1;
    }

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

    .footer-inner {
        flex-direction: column;
    }
}

.logo-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--teal);
}