/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff4e8;
    color: #3b3028;
    line-height: 1.5;
}

/* Header 1 */
.header-1 {
    width: 100%;
    background-color: #fff4e8;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
    width: 100%;
}

.logo-section {
    flex: 1;
}

.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 48px;
    color: #e45a33;
    letter-spacing: -1.44px;
    line-height: 1.1;
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #3b3028;
    text-decoration: none;
    letter-spacing: -0.08px;
    line-height: 1.45;
    text-transform: capitalize;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #e45a33;
}

/* Animated underline for nav links */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 100%;
    background: #e45a33;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    justify-content: space-between;
    gap: 32px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 64px;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #e45a33;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #3b3028;
    letter-spacing: -0.96px;
    line-height: 1.1;
    width: 100%;
    margin: 0;
}

/* Hero entrance micro-animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text > * {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 0.6s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.12s; }
.hero-text > *:nth-child(3) { animation-delay: 0.20s; }
.hero-text > *:nth-child(4) { animation-delay: 0.28s; }

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.hero-description p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: rgba(60, 64, 67, 0.6);
    letter-spacing: -0.1px;
    line-height: 1.45;
    margin: 0;
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.primary-button {
    background-color: #e45a33;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.09px;
    line-height: 1.45;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.primary-button:hover {
    background-color: #c94d2a;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(228, 90, 51, 0.2);
}

.hero-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Process Section */
.process-section {
    width: 100%;
    background-color: #ffffff;
}

.process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 64px;
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 600px;
}

.process-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #3b3028;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin: 0;
}

.process-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: rgba(60, 64, 67, 0.6);
    letter-spacing: -0.1px;
    line-height: 1.45;
    margin: 0;
}

.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 360px;
    min-height: 320px;
    background: #fff4e8;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(59, 48, 40, 0.06);
    border: 1px solid rgba(228, 90, 51, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(59, 48, 40, 0.12);
}

.process-icon {
    transition: transform 0.25s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.05);
}

.process-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.process-number {
    width: 48px;
    height: 48px;
    background: #e45a33;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.1px;
    margin-bottom: 8px;
    box-shadow: 0 4px 16px rgba(228, 90, 51, 0.3);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: rgba(228, 90, 51, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e45a33;
}

.process-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.process-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #3b3028;
    letter-spacing: -0.48px;
    line-height: 1.2;
    margin: 0;
}

.process-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(60, 64, 67, 0.6);
    letter-spacing: -0.32px;
    line-height: 1.4;
    margin: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(228, 90, 51, 0.6);
    margin-top: 40px;
    flex-shrink: 0;
}

.modality-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.modality-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(59, 48, 40, 0.04);
    border: 1px solid rgba(59, 48, 40, 0.06);
}

.modality-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(228, 90, 51, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e45a33;
}

.modality-item span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #3b3028;
    letter-spacing: -0.08px;
    line-height: 1.4;
}

.process-list {
    list-style: disc;
    margin-left: 24px;
}

.process-list li {
    margin-bottom: 8px;
}

.process-list li:last-child {
    margin-bottom: 0;
}

/* Office Section */
.office-section {
    width: 100%;
    background-color: #fff4e8;
}

.office-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 64px;
}

.office-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #3b3028;
    letter-spacing: -0.8px;
    line-height: 1.2;
    width: 100%;
}

.office-images {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.office-card {
    flex: 1;
    max-width: 388px;
    min-width: 336px;
}

.office-img {
    width: 100%;
    height: 517px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.35s ease;
}

.office-card:hover .office-img {
    transform: scale(1.02);
}

/* Scroll-reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Contact Section */
.contact-section {
    width: 100%;
    background-color: #fff4e8;
}

.contact-container {
    display: flex;
    gap: 64px;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 64px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 0;
    max-width: 500px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #3b3028;
    letter-spacing: -0.96px;
    line-height: 1.2;
    width: 100%;
    margin-bottom: 16px;
}

.contact-details,
.location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: max-content;
}

.contact-details p,
.location-details p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(60, 64, 67, 0.6);
    letter-spacing: -0.1px;
    line-height: 1.45;
    margin: 0;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(60, 64, 67, 0.6);
    letter-spacing: -0.1px;
    line-height: 1.45;
    margin: 0;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #e45a33;
}

/* Contact Methods Cards */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(59, 48, 40, 0.04);
    transition: all 0.2s ease;
    border: 1px solid rgba(59, 48, 40, 0.08);
    min-height: 88px;
}

.contact-card:hover {
    box-shadow: 0 4px 16px rgba(59, 48, 40, 0.08);
    transform: translateY(-2px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(228, 90, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e45a33;
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #3b3028;
    letter-spacing: -0.08px;
    line-height: 1.2;
    margin: 0;
}

.contact-card-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(60, 64, 67, 0.8);
    letter-spacing: -0.09px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card-link:hover {
    color: #e45a33;
}

/* Location Section */
.location-section {
    width: 100%;
}

.location-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #3b3028;
    letter-spacing: -0.48px;
    line-height: 1.2;
    width: 100%;
    margin-bottom: 16px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(59, 48, 40, 0.04);
    border: 1px solid rgba(59, 48, 40, 0.08);
    min-height: 120px;
}

/* Card sizing */
.process-card,
.office-card,
.contact-card,
.location-card {
    height: auto;
    max-height: 100%;
}

.location-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(228, 90, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e45a33;
    margin-top: 4px;
}

.location-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-address p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(60, 64, 67, 0.8);
    letter-spacing: -0.09px;
    line-height: 1.45;
    margin: 0;
}

.map-button {
    background-color: #e45a33;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.08px;
    line-height: 1.45;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.map-button:hover {
    background-color: #c94d2a;
}

.map-button svg {
    flex-shrink: 0;
}

.map-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    padding: 80px 0;
    border-radius: 16px;
    min-width: 400px;
}

.map-embed {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(59, 48, 40, 0.08);
}

/* Footer */
.footer-section {
    width: 100%;
    background-color: #fff4e8;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
}

.footer-avatar {
    width: 40px;
    height: 40px;
}

.footer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #3b3028;
    text-decoration: none;
    letter-spacing: -0.08px;
    line-height: 1.45;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: #e45a33;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .header-container,
    .process-container,
    .office-container,
    .contact-container,
    .footer-container {
        padding-left: 32px;
        padding-right: 32px;
    }
    
    .hero-text {
        padding-left: 32px;
        padding-right: 32px;
    }
    
    .logo-text {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .contact-title {
        font-size: 40px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .logo-section {
        flex: none;
    }
    
    .main-nav {
        gap: 24px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .hero-text {
        padding: 60px 32px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
        order: -1;
        margin: 16px auto;
    }
    
    .process-container {
        gap: 40px;
        padding: 60px 32px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .process-card {
        max-width: 100%;
        width: 100%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .process-main-title {
        font-size: 32px;
    }
    
    .process-subtitle {
        font-size: 18px;
    }
    
    .office-images {
        flex-direction: column;
        gap: 24px;
    }
    
    .office-card {
        max-width: 100%;
        min-width: auto;
    }
    
    .office-img {
        height: 400px;
    }
    /* Tablet card sizing */
    .process-card { min-height: 280px; }
    .contact-card { min-height: 80px; }
    .location-card { min-height: 112px; }
    
    .contact-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .contact-info {
        width: 100%;
        max-width: none;
        gap: 32px;
        padding: 60px 0;
    }
    
    .contact-title,
    .location-title {
        width: 100%;
    }
    
    .map-placeholder {
        width: 100%;
        padding: 60px 0;
        min-width: auto;
    }
    
    .map-embed {
        height: 300px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 16px;
    }
}

/* Mobile phones */
@media (max-width: 640px) {
    .header-container,
    .process-container,
    .office-container,
    .contact-container,
    .footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-text {
        padding: 40px 16px;
    }
    
    .logo-text {
        font-size: 32px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description p {
        font-size: 18px;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        margin: 16px 0;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    
    .process-container {
        padding: 40px 16px;
    }
    
    .office-container {
        padding: 40px 16px;
    }
    
    .office-title {
        font-size: 32px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .location-title {
        font-size: 24px;
    }
    
    .contact-details p,
    .location-details p {
        font-size: 18px;
    }
    /* Mobile card sizing */
    .process-card { min-height: 240px; }
    .contact-card { min-height: 72px; }
    .location-card { min-height: 100px; }
    
    .footer-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .logo-text {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .hero-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    
    .hero-description p {
        font-size: 16px;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        margin: 0;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .process-title {
        font-size: 20px;
    }
    
    .office-title {
        font-size: 28px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .location-title {
        font-size: 20px;
    }
    
    .primary-button,
    .map-button {
        font-size: 16px;
        padding: 10px 14px;
    }
    /* Small mobile card sizing */
    .process-card { min-height: 220px; }
    .contact-card { min-height: 68px; }
    .location-card { min-height: 96px; }
}