/* Brand Colors */
:root {
    --deep-navy: #033b87;
    --sky-blue: #459dd8;
    --light-blue: #87ceeb;
    --navy-blue: #1e4d6b;
    --white: #ffffff;
    --off-white: #f8fafc;
    --transition-speed: 0.3s;
    --hover-lift: translateY(-10px);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--deep-navy);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.25rem 0;
}

/* Progressive scrolled state handled by JavaScript */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    max-width: 1600px;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.1s linear;
    filter: brightness(0) invert(1);
    transform-origin: left center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu .client-button,
.nav-menu .cta-button {
    margin-left: 1rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.1s linear;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: width 0.3s ease;
}

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

.client-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s linear;
    font-size: 1rem;
    letter-spacing: 0.025em;
}

.client-button:hover {
    background: currentColor;
    color: var(--deep-navy);
}

.cta-button {
    background: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 157, 216, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 48px;
    height: 48px;
    position: relative;
}



.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}



.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Ensure horizontal centering on all screens */
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
    overflow: hidden;
    /* Respect notches and rounded corners on iOS devices */
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#particle-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(3, 59, 135, 0.1) 35px, rgba(3, 59, 135, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(3, 59, 135, 0.1) 35px, rgba(3, 59, 135, 0.1) 70px);
}

.hero-graph-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    overflow: hidden;
    z-index: 1;
}

.hero-graph-line {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
    animation: moveHeroLines 4s linear infinite;
}

.hero-graph-line:nth-child(1) { width: 150px; left: 20%; animation-delay: 0s; }
.hero-graph-line:nth-child(2) { width: 200px; left: 50%; animation-delay: 1.5s; }
.hero-graph-line:nth-child(3) { width: 120px; left: 75%; animation-delay: 3s; }

@keyframes moveHeroLines {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(300%); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    animation: fadeInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--white);
    width: 100%; /* prevent overflow-induced horizontal shift */
}

.hero-title {
    font-size: clamp(1.4rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-wrap: balance; /* Improve line breaking for long headings */
    margin-inline: auto; /* ensure centering in logical direction */
}

.hero-title .highlight {
    color: var(--sky-blue);
    position: relative;
    display: inline-block;
    animation: glowPulse 3s ease-in-out infinite;
}

/* Ensure each line of the hero title centers as a block on small screens */
.hero-title-line {
    display: inline-block;
}

@media (max-width: 640px) {
    .hero-title-line {
        display: block;
    }
}

.no-break {
    white-space: nowrap;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 15px rgba(69, 157, 216, 0.4); }
    50% { text-shadow: 0 0 25px rgba(69, 157, 216, 0.6); }
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--sky-blue);
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-wrap: pretty;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.primary-cta {
    background: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 10px 30px rgba(69, 157, 216, 0.4);
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
    display: inline-block;
}

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

.primary-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(69, 157, 216, 0.6);
}

.secondary-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--deep-navy);
    transform: translateY(-2px);
}



/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

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

.services-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.services-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--navy-blue);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 4px 20px rgba(69, 157, 216, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(69, 157, 216, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue) 0%, var(--light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(69, 157, 216, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(69, 157, 216, 0.3);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: iconShimmer 3s infinite;
}

@keyframes iconShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--navy-blue);
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(69, 157, 216, 0.1);
    color: var(--navy-blue);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--sky-blue);
    font-weight: bold;
    font-size: 0.9rem;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--sky-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-top: 1px solid rgba(69, 157, 216, 0.1);
    text-decoration: none;
    margin-top: auto;
}

.service-cta:hover {
    color: var(--deep-navy);
}

.service-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-cta:hover svg {
    transform: translateX(5px);
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.constellation-map {
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

#constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-nebula {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: starTwinkle 3s ease-in-out infinite;
}

.stat-nebula:nth-child(2) { animation-delay: 0.5s; }
.stat-nebula:nth-child(3) { animation-delay: 1s; }
.stat-nebula:nth-child(4) { animation-delay: 1.5s; }

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 0 30px var(--sky-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--sky-blue);
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.calculator-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-hologram {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(69, 157, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(69, 157, 216, 0.2);
}

.calc-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sky-blue);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    opacity: 0.6;
    font-size: 2.5rem;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    opacity: 0.9;
    font-size: 0.9rem;
}

.calc-input {
    width: 100%;
    padding: 1rem;
    background: var(--off-white);
    border: 1px solid rgba(69, 157, 216, 0.2);
    border-radius: 10px;
    color: var(--deep-navy);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.calc-input:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 20px rgba(69, 157, 216, 0.3);
}

.calculate-btn {
    width: 100%;
    background: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(69, 157, 216, 0.4);
}

.savings-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
}

#savings-chart {
    max-width: 100%;
    height: 400px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

.about-text {
    flex: 1;
}

.about-section .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.about-narrative {
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
    width: 100%;
}

.about-narrative p {
    font-size: 1.1rem;
    color: var(--navy-blue);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: justify;
    width: 100%;
}

.nle-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--sky-blue);
    box-shadow: 0 4px 15px rgba(69, 157, 216, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(69, 157, 216, 0.15);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: rgba(3, 59, 135, 0.7);
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.about-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 
        0 10px 40px rgba(69, 157, 216, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(69, 157, 216, 0.1);
    position: sticky;
    top: calc(95px + 1rem);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.nle-commitment h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 100%);
    border-radius: 12px;
    color: var(--white);
}

.commitment-stats .stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.commitment-stats .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    color: var(--white);
}


/* Calculators Section */
.calculators-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

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

.calculators-header .section-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--deep-navy);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calculators-header .section-subtitle {
    color: rgba(3, 59, 135, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(69, 157, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.calculator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(3, 59, 135, 0.15);
    border-color: var(--sky-blue);
}

.calculator-card.coming-soon-card {
    opacity: 0.85;
}

.calculator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-navy));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.calculator-icon svg {
    width: 28px;
    height: 28px;
}

.calculator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.calculator-description {
    color: rgba(3, 59, 135, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.calculator-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(69, 157, 216, 0.1);
    color: var(--sky-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(69, 157, 216, 0.2);
}

.calculator-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculator-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.calculator-cta:not(.coming-soon) {
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-navy));
    color: white;
}

.calculator-cta:not(.coming-soon):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 157, 216, 0.4);
}

.calculator-cta.coming-soon {
    background: rgba(69, 157, 216, 0.1);
    color: var(--sky-blue);
    border: 1px solid rgba(69, 157, 216, 0.3);
    cursor: not-allowed;
}

.coming-soon-indicator {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.coming-soon-indicator svg {
    width: 100%;
    height: 100%;
}

.calculators-footer {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(69, 157, 216, 0.2);
}

.calculators-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(69, 157, 216, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(69, 157, 216, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--sky-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.info-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: rgba(3, 59, 135, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-cta {
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-navy));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.info-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 157, 216, 0.4);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .calculators-section {
        padding: 4rem 0 3rem;
    }
    
    .calculators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .calculator-card {
        padding: 2rem;
    }
    
    .calculators-info {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        align-self: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        var(--deep-navy) 0%, 
        rgba(3, 59, 135, 0.95) 50%, 
        var(--navy-blue) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-header .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(69, 157, 216, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(69, 157, 216, 0.3);
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    stroke-width: 1.5;
}

.card-header h3 {
    color: var(--deep-navy);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: rgba(3, 59, 135, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.modern-form {
    max-width: 100%;
}

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

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

.form-group label {
    display: block;
    color: var(--deep-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(69, 157, 216, 0.2);
    border-radius: 12px;
    color: var(--deep-navy);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(3, 59, 135, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(69, 157, 216, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    color: var(--white);
    border: none;
    padding: 1.3rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(69, 157, 216, 0.4);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(69, 157, 216, 0.3);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 1.5;
}

.info-header h4 {
    color: var(--deep-navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.info-description {
    color: rgba(3, 59, 135, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--deep-navy);
    text-shadow: 0 0 10px var(--sky-blue);
}

.info-note {
    color: rgba(3, 59, 135, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.info-address {
    color: var(--deep-navy);
    font-size: 1rem;
    line-height: 1.5;
}

.hours-card {
    background: rgba(255, 255, 255, 0.95);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--deep-navy);
    font-size: 0.95rem;
}

.day {
    font-weight: 500;
}

.time {
    color: var(--sky-blue);
    font-weight: 600;
}

.emergency-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(3, 59, 135, 0.2);
    font-size: 0.85rem;
    color: rgba(3, 59, 135, 0.7);
    text-align: center;
    font-style: italic;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-cards {
        max-width: 1100px;
    }
}

@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-header .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    gap: 1rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-blue) 100%);
    color: var(--white);
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sky-blue) 50%, transparent 100%);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--sky-blue);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-blue);
    text-shadow: 0 0 8px rgba(152, 207, 255, 0.5);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--sky-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sky-blue);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.certification {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(69, 157, 216, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.certification:hover {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease, backdrop-filter 0.4s ease;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    max-height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    padding-top: 110px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}















.mobile-nav {
    flex: 1;
    padding: 2rem 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    justify-content: flex-start;
}

.mobile-nav-link {
    color: #033b87;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    padding: 1.2rem 1.5rem;
    margin: 0.25rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    opacity: 0;
    transform: translateX(30px);
    visibility: hidden;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0.35s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0.4s;
}

/* Make header logo and hamburger menu colored when mobile menu is open */
body.mobile-menu-open .logo {
    filter: none;
}

body.mobile-menu-open .mobile-menu-toggle {
    background: rgba(3, 59, 135, 0.1);
    border-color: rgba(3, 59, 135, 0.3);
}

body.mobile-menu-open .mobile-menu-toggle span {
    background: var(--deep-navy);
}



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

.nav-link-text {
    flex: 1;
    text-align: left;
    color: #033b87;
}

.nav-link-arrow {
    width: 20px;
    height: 20px;
    color: #459dd8;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}



.mobile-nav-link:hover {
    background: rgba(69, 157, 216, 0.1);
}

.mobile-nav-link:hover .nav-link-arrow {
    transform: translateX(5px);
}

.mobile-menu-footer {
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



.mobile-cta {
    background: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 12px rgba(69, 157, 216, 0.25);
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}



.mobile-cta:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 157, 216, 0.4);
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--deep-navy);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.mobile-contact-link:hover {
    color: var(--sky-blue);
}

.mobile-contact-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    
    .calculator-interface {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
        margin-bottom: 2rem;
    }
    
    .footer-credentials {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-top: 2rem;
    }
    
    .footer-certifications {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}


@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .about-visual {
        position: static;
        padding: 2rem;
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        position: relative;
        justify-content: center;
    }
    
    .logo-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .logo {
        height: 65px;
    }
    
    .hero-section {
        /* Adapt top spacing to device notch/status bar on mobile */
        padding-top: clamp(6.5rem, 9vh, 8.25rem);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        text-align: center;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-section .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        line-height: 1.1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-visual {
        position: static;
        padding: 1.5rem;
        margin: 0;
        max-height: none;
        overflow-y: visible;
    }
    
    .value-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .value-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .nle-values {
        gap: 1.25rem;
    }
    
    .commitment-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
        height: 40px;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-credentials {
        align-items: center;
        text-align: center;
        margin-top: 2rem;
    }
    
    .footer-certifications {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: clamp(6.25rem, 9vh, 7.75rem);
    }
    /* Allow line breaks for long hero title phrase on mid-sized phones */
    .hero-title .no-break {
        white-space: normal;
    }
    .hero-title {
        max-width: 24ch;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.75rem 1rem;
        padding-top: clamp(6rem, 10vh, 7rem);
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1.25rem;
        max-width: 20ch; /* Tighten measure for nicer centering */
        margin-left: auto;
        margin-right: auto;
    }
    .hero-title .no-break { white-space: normal; }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
        line-height: 1.4;
    }
    
    .hero-cta-group {
        gap: 0.875rem;
    }
    
    .primary-cta,
    .secondary-cta {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* iPhone SE specific optimization */
@media (max-width: 375px) and (max-height: 667px) {
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.05;
        margin-bottom: 1rem;
    }
    
    .hero-title .no-break {
        font-size: 0.85em !important;
        display: inline-block;
        white-space: nowrap;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        max-width: 100%;
    }
}

/* iPhone SE and very small screens */
@media (max-width: 375px) {
    .hero-section {
        padding: 1.5rem 1rem;
        padding-top: clamp(5.5rem, 10vh, 6.5rem);
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-title .no-break {
        font-size: 0.92em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .primary-cta,
    .secondary-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Extra small screens (iPhone SE 1st gen) */
@media (max-width: 320px) {
    .hero-section {
        padding: 1.25rem 0.75rem;
        padding-top: clamp(5rem, 12vh, 6rem);
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.05;
        margin-bottom: 0.75rem;
    }
    
    .hero-title .no-break {
        font-size: 0.8em !important;
        display: inline-block;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .primary-cta,
    .secondary-cta {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
    }
    
    .logo {
        height: 60px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .calc-display {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .mobile-menu-content {
        width: 100%;
        max-width: none;
        padding-top: 95px;
    }
    
    .mobile-nav {
        padding: 1.5rem 0 1.25rem 0;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        margin: 0.2rem 1rem;
    }
    
    .mobile-cta {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .mobile-menu-footer {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .mobile-menu-contact {
        gap: 0.5rem;
    }
    
    .mobile-contact-link {
        font-size: 0.85rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--sky-blue);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid transparent;
    border-top-color: var(--sky-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Service Pages Styles */

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: -5px;
    z-index: 999;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transition-delay: 0s;
    z-index: 9999;
    margin-top: 0px;
    padding: 15px 0;
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.nav-dropdown:hover .dropdown-menu {
    transition-delay: 0.1s;
}

.nav-dropdown .dropdown-menu:hover {
    transition-delay: 0s;
}

.nav-dropdown {
    padding: 15px 10px;
    position: relative;
    z-index: 1001;
    margin: 0 5px;
}

.nav-dropdown .nav-link {
    padding: 8px 15px;
    position: relative;
    display: block;
}

/* Ensure Services text follows scroll-based color only */
.nav-dropdown .nav-link.dropdown-toggle {
    color: var(--white);
}

/* Calculator Dropdown Styling */
.dropdown-item-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.dropdown-item-icon {
    width: 20px;
    height: 20px;
    color: var(--sky-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.dropdown-item-title {
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 0.95rem;
    line-height: 1.3;
}

.coming-soon-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--sky-blue);
    background: rgba(69, 157, 216, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.dropdown-item.coming-soon {
    cursor: default;
    pointer-events: none;
    opacity: 0.8;
}

.dropdown-item.coming-soon:hover {
    background: transparent;
}

/* Mobile Calculator Submenu */
.mobile-calculators-submenu {
    display: none;
    background: rgba(69, 157, 216, 0.05);
    margin: 0.5rem 0;
    border-radius: 12px;
    padding: 0.75rem 0;
    border-left: 3px solid var(--sky-blue);
    margin-left: 1rem;
    border: 1px solid rgba(69, 157, 216, 0.15);
}

.mobile-calculators-submenu.active {
    display: block;
    animation: fadeInSlide 0.3s ease-out;
}

/* Mobile Services Submenu */
.mobile-services-submenu {
    display: none;
    background: rgba(69, 157, 216, 0.05);
    margin: 0.5rem 0;
    border-radius: 12px;
    padding: 0.75rem 0;
    border-left: 3px solid var(--sky-blue);
    margin-left: 1rem;
    border: 1px solid rgba(69, 157, 216, 0.15);
}

.mobile-services-submenu.active {
    display: block;
    animation: fadeInSlide 0.3s ease-out;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--deep-navy);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.125rem 0.5rem;
    border-bottom: 1px solid rgba(69, 157, 216, 0.1);
    font-size: 0.95rem;
    font-weight: 500;
}

.mobile-nav-sublink:last-child {
    border-bottom: none;
}

.mobile-nav-sublink span {
    color: inherit;
}

.mobile-nav-sublink.active {
    background: rgba(69, 157, 216, 0.2);
    color: var(--sky-blue);
    font-weight: 600;
    border-bottom-color: rgba(69, 157, 216, 0.2);
}

.mobile-nav-sublink:hover {
    background: rgba(69, 157, 216, 0.12);
    color: var(--deep-navy);
    transform: translateX(2px);
}

/* Dropdown arrow rotation */
.services-toggle.active .nav-link-arrow,
.calculators-toggle.active .nav-link-arrow {
    transform: rotate(90deg);
}

.services-toggle .nav-link-arrow,
.calculators-toggle .nav-link-arrow {
    transition: transform 0.3s ease;
}

/* Submenu animation */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 400px;
    }
}

/* Success Page Styles */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(69, 157, 216, 0.02) 100%);
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.6s ease-out;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 3;
}

.success-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.success-message {
    font-size: 1.125rem;
    color: rgba(3, 59, 135, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.success-next-steps {
    background: rgba(69, 157, 216, 0.05);
    border: 1px solid rgba(69, 157, 216, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.success-next-steps h3 {
    color: var(--deep-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.75rem 0;
    color: rgba(3, 59, 135, 0.8);
    border-bottom: 1px solid rgba(69, 157, 216, 0.1);
}

.success-next-steps li:last-child {
    border-bottom: none;
}

.success-next-steps li::before {
    content: "✓";
    color: var(--sky-blue);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.success-contact {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.success-contact p {
    color: rgba(3, 59, 135, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(69, 157, 216, 0.2);
}

.contact-option:hover {
    background: rgba(69, 157, 216, 0.1);
    transform: translateY(-2px);
}

.contact-option svg {
    width: 18px;
    height: 18px;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Success Page */
@media (max-width: 768px) {
    .success-section {
        padding: 6rem 0 3rem;
        min-height: 70vh;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .success-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .success-next-steps {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

.mobile-nav-sublink-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mobile-nav-sublink-icon {
    width: 18px;
    height: 18px;
    color: var(--sky-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.mobile-nav-sublink-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-sublink-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--deep-navy);
}

.mobile-nav-sublink.coming-soon {
    cursor: default;
    pointer-events: none;
    opacity: 0.7;
}

.mobile-nav-sublink:not(.coming-soon):hover {
    background: rgba(69, 157, 216, 0.12);
    color: var(--deep-navy);
    transform: translateX(2px);
}

.calculators-toggle .nav-link-arrow {
    transition: transform 0.3s ease;
}

.calculators-toggle.active .nav-link-arrow {
    transform: rotate(90deg);
}

/* Remove color override - let scroll effects handle color */

/* Additional footer styling for service pages */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Footer bottom section for copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom .footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact form text color fixes */
.contact-form-card .card-header h3 {
    color: var(--deep-navy) !important;
}

.contact-form-card .card-header p {
    color: rgba(3, 59, 135, 0.7) !important;
}

.contact-form-card .form-group label {
    color: var(--deep-navy) !important;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    color: var(--deep-navy) !important;
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: rgba(3, 59, 135, 0.5) !important;
}

.contact-form-card .form-group select option {
    color: var(--deep-navy) !important;
    background: var(--white) !important;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--deep-navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

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

.dropdown-item:hover {
    background: rgba(69, 157, 216, 0.08);
    color: var(--sky-blue);
}

.dropdown-item.active {
    background: var(--sky-blue);
    color: var(--white);
}

.nav-link.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
    vertical-align: middle;
    position: static !important;
    background: transparent !important;
    bottom: auto !important;
    left: auto !important;
}

.nav-dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Service Hero Section */
.service-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hero-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Details Section */
.service-details-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-main-content {
    flex: 1;
}

.service-overview {
    margin-bottom: 4rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(3, 59, 135, 0.8);
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.service-features-detailed {
    margin-bottom: 4rem;
}

.feature-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 2rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: rgba(3, 59, 135, 0.7);
    line-height: 1.6;
    text-align: justify;
    width: 100%;
}

/* Process Steps */
.service-process {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(3, 59, 135, 0.7);
    line-height: 1.6;
    text-align: justify;
    width: 100%;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(3, 59, 135, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
}

.pricing-card {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
    color: var(--white);
}

.pricing-card h3 {
    color: var(--white);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.sidebar-cta {
    background: var(--white);
    color: var(--deep-navy);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.sidebar-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.quote-card .sidebar-cta {
    background: var(--white);
    color: var(--deep-navy);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quote-card .sidebar-cta:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.quote-card {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
    border: none;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-card {
    background: var(--off-white);
}

.sidebar-card p {
    text-align: left;
    width: 100%;
    line-height: 1.4;
    margin-bottom: 1rem;
}

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

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-option:hover {
    color: var(--sky-blue);
}

.contact-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Related Services Section */
.related-services-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.related-services-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.related-service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.related-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.related-service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.related-service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.related-service-card p {
    color: rgba(3, 59, 135, 0.7);
    line-height: 1.3;
    margin: 0;
    text-align: left;
    width: 100%;
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 4rem 0 8rem;
    background: var(--white);
}

.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

.policy-updated {
    text-align: center;
    color: rgba(3, 59, 135, 0.7);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.policy-content {
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sky-blue);
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 2rem 0 1rem;
}

.policy-section p {
    color: rgba(3, 59, 135, 0.8);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.policy-section ul {
    color: rgba(3, 59, 135, 0.8);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
}

.contact-details {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--sky-blue);
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Desktop text spacing adjustments */
@media (min-width: 769px) {
    .service-description {
        line-height: 1.4 !important;
        text-align: left !important;
        margin-bottom: 1.2rem !important;
    }
    
    .about-narrative p {
        line-height: 1.5 !important;
        text-align: left !important;
    }
    
    .feature-card p {
        line-height: 1.4 !important;
        text-align: left !important;
    }
    
    .sidebar-card p {
        line-height: 1.4 !important;
        text-align: left !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-card p {
        line-height: 1.4 !important;
        text-align: left !important;
        margin-bottom: 1rem !important;
    }
    
    .related-service-card p {
        line-height: 1.3 !important;
        text-align: left !important;
    }
}

/* Mobile text and typography improvements */
@media (max-width: 768px) {
    .about-narrative p,
    .lead-paragraph,
    .service-description,
    .feature-card p,
    .step-content p,
    .sidebar-card p,
    .related-service-card p,
    .policy-section p {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.2rem !important;
        padding: 0 !important;
    }
    
    .lead-paragraph {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        line-height: 1.5 !important;
    }
    
    .service-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .sidebar-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem !important;
        margin: 0 auto 1.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .about-content,
    .services-grid {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Mobile styles for privacy policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 3rem 0 4rem;
    }
    
    .privacy-policy-content {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
        line-height: 1.1 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .policy-updated {
        font-size: 0.9rem !important;
        margin-bottom: 2rem !important;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.3rem !important;
        line-height: 1.1 !important;
        padding: 0 0.5rem !important;
    }
    
    .privacy-policy-content {
        padding: 0 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .page-title {
        font-size: 1.2rem !important;
        padding: 0 0.25rem !important;
    }
}

/* Service page mobile improvements */
@media (max-width: 768px) {
    .service-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .service-main-content,
    .service-sidebar {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .feature-section-title {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }
    
    .feature-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
        text-align: center;
    }
}

/* Mobile Navigation Styles */
.mobile-nav-section {
    margin-bottom: 1rem;
}

.mobile-nav-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(3, 59, 135, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-link.active {
    background: var(--sky-blue);
    color: var(--white);
}

.mobile-nav-link.active .nav-link-arrow {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-sidebar {
        order: -1;
    }
    
    .feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 6rem 0 3rem;
        min-height: 50vh;
    }
    
    .service-hero-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-hero-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-details-section {
        padding: 4rem 0;
    }
    
    .service-content-grid {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-cta .primary-cta,
    .service-hero-cta .secondary-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Hide dropdown on mobile */
    .nav-dropdown .dropdown-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-hero-section {
        padding: 5rem 0 2rem;
    }
    
    .service-content-grid {
        padding: 0 0.75rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        align-self: flex-start;
    }
} 