:root {
    --deep-navy: #0B1F3A;
    --slate-blue: #2E4057;
    --muted-gold: #C9A24D;
    --charcoal: #1F2933;
    --off-white: #F5F7FA;
    --pure-white: #FFFFFF;
    --light-gold: #E5D4A0;
    --dark-gold: #A88939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    padding: 0 40px 0 10px;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(11, 31, 58, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.logo img {
    width: 249px;
    height: 62px;
    display: block;
    transition: transform 0.3s ease;
    margin: 8px 0 0 0;
}

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

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

.nav-link {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.btn-primary {
    background: var(--muted-gold);
    color: var(--deep-navy);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--muted-gold);
    touch-action: manipulation;
}

.btn-primary:hover {
    background: transparent;
    color: var(--muted-gold);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--muted-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.desktop-only {
    display: inline-block;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--slate-blue) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 162, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 77, 0.08) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-text {
    max-width: 900px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    color: var(--pure-white);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title-small {
    font-size: 48px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--muted-gold);
    font-weight: 700;
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 700px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hipaa-badge {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hipaa-badge img {
    max-width: 300px;
    height: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-gold {
    background: var(--muted-gold);
    color: var(--deep-navy);
    border-color: var(--muted-gold);
}

.btn-gold:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
}

.btn-outline:hover {
    background: var(--pure-white);
    color: var(--deep-navy);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--muted-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Slider Section */
.slider-section {
    padding: 90px 0 0 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--slate-blue) 100%);
    overflow: hidden;
    position: relative;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    min-height: 600px;
    padding: 60px 60px 80px 60px;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

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

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
}

.slide-text {
    max-width: 900px;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--muted-gold);
    line-height: 1.2;
    margin-bottom: 28px;
    font-style: italic;
}

.highlight-text {
    color: var(--light-gold);
    font-weight: 700;
}

.slide-description {
    font-size: 17px;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.slide-subtitle {
    font-size: 20px;
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slide-badges {
    margin-top: 36px;
}

.slide-badges img {
    max-width: 350px;
    height: auto;
}

/* Audit Features */
.audit-features {
    margin-bottom: 32px;
}

.features-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 20px;
}

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

.audit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--pure-white);
    font-weight: 500;
}

.checkmark {
    flex-shrink: 0;
}

.audit-note {
    font-size: 17px;
    color: var(--off-white);
    font-style: italic;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-audit {
    display: inline-block;
    padding: 18px 42px;
    background: linear-gradient(135deg, #6B8E23, #556B2F);
    color: var(--pure-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
    margin-bottom: 24px;
}

.btn-audit:hover {
    background: linear-gradient(135deg, #7FA62E, #6B8E23);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.4);
}

.security-badge {
    font-size: 15px;
    color: var(--off-white);
    display: flex;
    align-items: center;
    margin-top: 24px;
    opacity: 0.95;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0 50px;
}

.slider-arrow {
    background: rgba(201, 162, 77, 0.15);
    border: 1px solid rgba(201, 162, 77, 0.4);
    color: var(--muted-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.slider-arrow:hover {
    background: var(--muted-gold);
    color: var(--deep-navy);
    border-color: var(--muted-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.slider-dot.active {
    background: var(--muted-gold);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(201, 162, 77, 0.4);
}

.slider-dot:hover {
    background: rgba(201, 162, 77, 0.6);
    transform: scale(1.2);
}

/* Split Layout for Slide with Image */
.slide-content-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slide-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.slide-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Full Image Slide */
.slide-image-full {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slide-image-full img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.services {
    padding: 120px 0;
    background: var(--pure-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-blue);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--pure-white);
    padding: 28px 24px;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(11, 31, 58, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 31, 58, 0.06);
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.15);
    border-color: var(--muted-gold);
}

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

.service-icon {
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow:
        0 4px 12px rgba(11, 31, 58, 0.2),
        0 8px 20px rgba(11, 31, 58, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 16px 16px 0 0;
    opacity: 0.6;
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--muted-gold) 0%, var(--dark-gold) 100%);
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 8px 20px rgba(201, 162, 77, 0.35),
        0 12px 30px rgba(201, 162, 77, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.icon-wrapper svg {
    width: 55px;
    height: 55px;
    color: var(--pure-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.icon-wrapper img {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.icon-wrapper svg[viewBox="0 0 93 93"] {
    width: 50px;
    height: 50px;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
    opacity: 0.9;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.service-list li {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-list li::before {
    content: "•";
    color: var(--muted-gold);
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    left: 0;
}

.why-choose {
    padding: 120px 0;
    background: var(--off-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: var(--slate-blue);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-marker {
    width: 8px;
    height: 8px;
    background: var(--muted-gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.7;
}

.why-choose-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.visual-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 31, 58, 0.15);
}

.visual-card.card-1 {
    grid-column: 1 / 2;
    background: linear-gradient(135deg, var(--deep-navy), var(--slate-blue));
}

.visual-card.card-2 {
    grid-column: 2 / 3;
}

.visual-card.card-3 {
    grid-column: 1 / 3;
}

.metric-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.visual-card.card-1 .metric-value {
    color: var(--muted-gold);
}

.visual-card.card-2 .metric-value,
.visual-card.card-3 .metric-value {
    color: var(--deep-navy);
}

.metric-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.visual-card.card-1 .metric-label {
    color: var(--off-white);
}

.visual-card.card-2 .metric-label,
.visual-card.card-3 .metric-label {
    color: var(--slate-blue);
}

.process {
    padding: 120px 0;
    background: var(--pure-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    background: var(--off-white);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 31, 58, 0.1);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--muted-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.7;
}

.specialties {
    padding: 120px 0;
    background: var(--off-white);
}

.specialty-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.specialty-card {
    background: var(--pure-white);
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(11, 31, 58, 0.05);
    box-shadow: 0 2px 8px rgba(11, 31, 58, 0.06);
}

.specialty-card:hover {
    background: #E8EFF4;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.12);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.specialty-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.specialty-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--deep-navy);
    stroke-width: 2;
}

.specialty-card:hover .specialty-icon svg {
    stroke: var(--muted-gold);
}

.specialty-name {
    font-family: 'Poppins', 'Libre Franklin', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--deep-navy);
    line-height: 1.4;
    margin: 0;
}

.specialty-card:hover .specialty-name {
    color: var(--slate-blue);
}

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 77, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-left {
    padding: 80px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contact-text {
    margin-bottom: 40px;
    animation: fadeInLeft 0.8s ease;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--pure-white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.contact-title .highlight-text {
    color: var(--muted-gold);
    position: relative;
}

.contact-description {
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.8;
    max-width: 500px;
    opacity: 0.95;
}

.contact-image {
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
    display: flex;
    align-items: flex-end;
    align-self: flex-end;
    margin-bottom: 0;
}

.contact-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    display: block;
}

.contact-right {
    background: white;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 600px;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--slate-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 16px;
    color: #5A6C7D;
    line-height: 1.7;
    margin-bottom: 40px;
}

.phone-link {
    color: #C9A24D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #B38F3D;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E9EE;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--deep-navy);
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: var(--muted-gold);
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.15);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--muted-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.15), 0 6px 16px rgba(201, 162, 77, 0.2);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8B98A5;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238B98A5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}


.contact-form select:required:invalid {
    color: #8B98A5;
}

.contact-form select option {
    color: var(--deep-navy);
}

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

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--muted-gold);
    color: var(--deep-navy);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

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

.btn-submit:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 162, 77, 0.5);
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
}

/* Form Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Input Focus Animation */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: inputPulse 0.3s ease;
}

@keyframes inputPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
    }
}

.footer {
    background: var(--deep-navy);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--off-white);
    font-size: 15px;
    opacity: 0.9;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--muted-gold);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-column ul li a:hover {
    color: var(--muted-gold);
    opacity: 1;
    padding-left: 5px;
}

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

.footer-bottom p {
    color: var(--off-white);
    font-size: 14px;
    opacity: 0.7;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .navbar .container {
        padding: 0 30px 0 15px;
    }

    .logo img {
        width: 200px;
        height: 80px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-title-small {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hipaa-badge img {
        max-width: 250px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 40px;
    }

    .slider-section {
        padding: 80px 0 0 0;
    }

    .slide {
        min-height: 500px;
        padding: 40px 40px 60px 40px;
    }

    .slide-title {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .slide-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .slide-badges img {
        max-width: 280px;
    }

    .features-title {
        font-size: 24px;
    }

    .audit-list li {
        font-size: 17px;
    }

    .btn-audit {
        padding: 16px 36px;
        font-size: 17px;
    }

    .slider-nav {
        padding: 25px 0 40px;
        gap: 16px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .slide-content-split {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .slide-image img {
        max-width: 100%;
        height: auto;
    }

    .slide-image-full img {
        max-height: 550px;
    }

    .services {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-choose {
        padding: 80px 0;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .visual-card.card-1,
    .visual-card.card-2,
    .visual-card.card-3 {
        grid-column: 1 / 2;
    }

    .process {
        padding: 80px 0;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .specialties {
        padding: 80px 0;
    }

    .specialty-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 60px 40px;
        min-height: auto;
    }

    .contact-right {
        padding: 60px 40px;
    }

    .contact-title {
        font-size: 40px;
    }

    .form-title {
        font-size: 28px;
    }

    .contact-image {
        margin-top: 30px;
    }

    .contact-image img {
        max-width: 100%;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding: 0 15px 0 10px;
    }

    .nav-content {
        padding: 10px 0;
    }

    .logo img {
        width: 160px;
        height: 60px;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: rgba(11, 31, 58, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: left 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 18px;
        width: 100%;
    }

    .desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .hero-title-small {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hipaa-badge {
        margin-bottom: 20px;
    }

    .hipaa-badge img {
        max-width: 200px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-bottom: 40px;
    }

    .btn-large {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        padding-top: 30px;
    }

    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
        text-align: center;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 13px;
    }

    .slider-section {
        padding: 78px 0 0 0;
    }

    .slide {
        min-height: auto;
        padding: 30px 20px 40px 20px;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .slide-description {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .slide-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .slide-badges img {
        max-width: 220px;
        width: 100%;
        height: auto;
    }

    .features-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .audit-list li {
        font-size: 16px;
        gap: 12px;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    .audit-note {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-audit {
        width: 100%;
        text-align: center;
        padding: 16px 28px;
        font-size: 16px;
    }

    .security-badge {
        font-size: 14px;
        justify-content: center;
    }

    .slider-nav {
        padding: 25px 0 35px;
        gap: 14px;
    }

    .slide-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slide-image {
        order: -1;
        justify-content: center;
    }

    .slide-image {
        width: 100%;
        max-width: 100%;
    }

    .slide-image img {
        max-height: none;
        width: 100%;
        height: auto;
        transform: perspective(1000px) rotateY(0deg);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .slide-image-full {
        width: 100%;
        padding: 20px 0 0 0;
        min-height: 300px;
    }

    .slide-image-full img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .services {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

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

    .service-card {
        padding: 28px 20px;
    }

    .icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .icon-wrapper svg {
        width: 48px;
        height: 48px;
    }

    .service-title {
        font-size: 19px;
    }

    .service-description {
        font-size: 14px;
    }

    .why-choose {
        padding: 60px 0;
    }

    .why-choose-content {
        gap: 40px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .features-list {
        gap: 20px;
    }

    .feature-content h4 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .visual-card {
        padding: 30px 24px;
    }

    .metric-value {
        font-size: 36px;
    }

    .metric-label {
        font-size: 13px;
    }

    .process {
        padding: 60px 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .process-step {
        padding: 32px 24px;
    }

    .step-number {
        font-size: 48px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .step-content p {
        font-size: 14px;
    }

    .specialties {
        padding: 60px 0;
    }

    .specialty-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }

    .specialty-card {
        padding: 20px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .specialty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }

    .specialty-icon img {
        width: 60px;
        height: 60px;
    }

    .specialty-icon svg {
        width: 60px;
        height: 60px;
    }

    .specialty-name {
        font-size: 15px;
        text-align: center;
    }

    .contact-left {
        padding: 50px 30px 30px;
        min-height: auto;
    }

    .contact-right {
        padding: 50px 30px;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .contact-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .form-title {
        font-size: 24px;
    }

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

    .contact-image {
        margin-top: 20px;
        display: none;
    }

    .contact-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-column h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar .container {
        padding: 0 12px 0 8px;
    }

    .logo img {
        width: 130px;
        height: 50px;
    }

    .btn-primary {
        padding: 7px 14px;
        font-size: 11px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .hero-title-small {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hipaa-badge {
        margin-bottom: 16px;
    }

    .hipaa-badge img {
        max-width: 180px;
    }

    .hero-actions {
        margin-bottom: 30px;
    }

    .btn-large {
        font-size: 14px;
        padding: 12px 18px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 15px;
        padding-top: 24px;
    }

    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
        text-align: center;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 12px;
    }

    .slider-section {
        padding: 70px 0 0 0;
    }

    .slide {
        padding: 30px 20px 40px 20px;
        min-height: auto;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-content-split {
        gap: 30px;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .slide-badges img {
        max-width: 190px;
        width: 100%;
        height: auto;
    }

    .features-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .audit-list li {
        font-size: 15px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .checkmark {
        width: 18px;
        height: 18px;
    }

    .audit-note {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-audit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .security-badge {
        font-size: 13px;
    }

    .slider-nav {
        padding: 20px 0 30px;
        gap: 12px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .slider-arrow svg {
        width: 14px;
        height: 14px;
    }

    .slider-dot {
        width: 7px;
        height: 7px;
    }

    .slider-dot.active {
        width: 20px;
    }

    .slide-image {
        width: 100%;
        max-width: 100%;
    }

    .slide-image img {
        max-height: none;
        width: 100%;
        height: auto;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .slide-image-full {
        width: 100%;
        min-height: 250px;
        padding: 20px 0 0 0;
    }

    .slide-image-full img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .services {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        padding: 24px 18px;
    }

    .icon-wrapper {
        width: 52px;
        height: 52px;
    }

    .icon-wrapper svg {
        width: 44px;
        height: 44px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 13px;
    }

    .why-choose {
        padding: 50px 0;
    }

    .why-choose-content {
        gap: 35px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .features-list {
        gap: 18px;
    }

    .feature-content h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .visual-card {
        padding: 24px 20px;
    }

    .metric-value {
        font-size: 32px;
    }

    .metric-label {
        font-size: 12px;
    }

    .process {
        padding: 50px 0;
    }

    .process-timeline {
        gap: 20px;
        margin-top: 35px;
    }

    .process-step {
        padding: 28px 20px;
    }

    .step-number {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .step-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step-content p {
        font-size: 13px;
    }

    .specialties {
        padding: 50px 0;
    }

    .specialty-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 35px;
    }

    .specialty-card {
        padding: 20px 12px;
        flex-direction: column;
        gap: 10px;
    }

    .specialty-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 8px;
    }

    .specialty-icon img {
        width: 52px;
        height: 52px;
    }

    .specialty-icon svg {
        width: 52px;
        height: 52px;
    }

    .specialty-name {
        font-size: 14px;
        text-align: center;
        line-height: 1.3;
    }

    .contact-left {
        padding: 40px 20px 30px;
        min-height: auto;
    }

    .contact-right {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 0;
    }

    .form-title {
        font-size: 22px;
    }

    .form-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 16px 28px;
        font-size: 16px;
    }

    .contact-image {
        display: none;
    }

    .contact-image img {
        max-width: 100%;
        width: 100%;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-logo img {
        height: 38px;
        margin-bottom: 16px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}