/* ========================================
   EVERLYN-INSPIRED THEME - DERMATOLOGY
   Soft, caring healthcare aesthetic
======================================== */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    /* Colors - Soft, Healthcare Palette */
    --primary-color: #2B5F44;
    --primary-light: #4A8566;
    --primary-dark: #1E4230;

    --secondary-color: #E8F5E9;
    --accent-color: #81C784;

    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6B6B6B;

    --bg-white: #FFFFFF;
    --bg-light: #F8FAF9;
    --bg-subtle: #F0F4F2;

    --border-color: #E0E0E0;
    --border-light: #F0F0F0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 30px;
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.1);
}

/* ========================================
   GLOBAL STYLES
======================================== */

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: var(--primary-light);
    color: white;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.dy-italic-text {
    font-style: italic;
    color: var(--primary-color);
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.dy-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.dy-container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

.dy-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2B5F44;
    margin-bottom: 1rem;
}

.dy-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.text-link:hover {
    gap: 0.75rem;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.dy-nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-display);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        transition: none;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        width: 100%;
        padding: 0.5rem 0;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.dy-hero {
    min-height: 95vh;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.dy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.dy-hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.dy-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dy-hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dy-hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dy-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dy-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.dy-hero-trust {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
}

.dy-trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .dy-hero {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    .dy-hero {
        min-height: auto;
        padding: 140px 0 80px;
        text-align: center;
    }

    .dy-hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .dy-hero::before {
        width: 500px;
        height: 500px;
        right: -100px;
    }
}

@media (max-width: 480px) {
    .dy-hero {
        padding: 120px 0 60px;
    }

    .dy-hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .dy-hero-container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   VALUES SECTION
   ======================================== */
.dy-values-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.dy-values-container {
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.dy-value-item h2 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-display);
    font-weight: 500;
}

.dy-value-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .dy-values-section {
        padding: 60px 0;
    }

    .dy-values-container {
        gap: 2.5rem;
    }
}



/* ============================================================
   START HERE — CONCERN CARDS
   ============================================================ */
.start-here {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.start-here-header {
    text-align: center;
    margin-bottom: 4rem;
}

.start-here-header .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.start-here-header .section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background-color: var(--primary-color);
}

.start-here-header h2 {
    margin-bottom: 1rem !important;
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin: 0;
}

.start-here-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.concern-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.concern-card {
    display: flex;
    height: 100%;
}

.concern-link {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.concern-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4A8566);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.concern-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(43, 95, 68, 0.25);
    border-color: rgba(43, 95, 68, 0.3);
}

.concern-link:hover::before {
    transform: scaleX(1);
}


.concern-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.concern-description {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

.concern-action {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.concern-link:hover .concern-action {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .concern-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .concern-cards {
        grid-template-columns: 1fr;
    }

    .start-here {
        padding: var(--section-padding-mobile) 0;
    }

    .concern-link {
        padding: 2.5rem 1.5rem;
    }
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    background-color: var(--bg-light);
}

.about-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-intro {
    text-align: left;
    margin-bottom: 0;
}

.about-intro .section-label {
    margin-bottom: 1rem;
}

.about-intro .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-intro .section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-align: left;
}

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: var(--shadow-xl);
    background-color: var(--bg-white); */
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-person-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: var(--transition-smooth);
    object-fit: cover;
    object-position: top center;
}

.about-image-wrapper:hover .about-person-img {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 968px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper {
        height: 400px;
    }
}

.cta-links {
    margin-top: 2rem;
}

/* New Education & Experience UI (Timeline-based instead of cards) */
.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 4rem;
}

.education-column h3,
.experience-column h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: var(--font-display);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.timeline-v2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: var(--border-light);
}

.timeline-item-v2 {
    position: relative;
    padding-left: 2.5rem;
}

.timeline-item-v2::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-light);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.timeline-item-v2 .time-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-item-v2 h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-item-v2 .location {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.timeline-item-v2 .desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.exp-bullets {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exp-bullets li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.exp-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

@media (max-width: 968px) {
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background-color: var(--bg-white);
}

/* Service List UI (Modern horizontal layout instead of cards) */
.service-list-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-light);
}

.service-list-item {
    display: grid;
    grid-template-columns: 80px 1fr 1.5fr auto;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    gap: 2rem;
}

.service-list-item::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.service-list-item:hover::before {
    width: 100%;
}

.service-list-index {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-light);
    opacity: 0.4;
}

.service-list-title h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
    color: var(--text-primary);
}

.service-list-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.service-list-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-feature-tag {
    font-size: 0.8125rem;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-weight: 500;
}

.service-list-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-list-item:hover .service-list-arrow {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: rotate(-45deg);
}

@media (max-width: 968px) {
    .service-list-item {
        grid-template-columns: 1fr auto;
        padding: 2rem 0;
    }

    .service-list-index,
    .service-list-content {
        display: none;
    }

    .service-list-title h3 {
        font-size: 1.35rem;
    }
}

.services-cta {
    text-align: center;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-section {
    background-color: var(--bg-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.full-width-card {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .full-width-card {
        grid-column: auto;
    }
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-primary);
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
}

.affiliation-card,
.publication-card {
    background-color: var(--bg-light);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* Decorative element removed for light theme */
.affiliation-card::after,
.publication-card::after {
    display: none;
}

.affiliation-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.affiliation-card h4,
.publication-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.affiliation-card p,
.publication-card p {
    color: var(--text-secondary);
}

.affiliation-card .testimonial-tag,
.publication-card .testimonial-tag {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.publication-list {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.pub-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.pub-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pub-authors {
    font-size: 0.85rem;
    color: var(--text-muted) !important;
    margin-bottom: 0.5rem;
}

.pub-title {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text-primary) !important;
}

.pub-journal {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary) !important;
    margin-bottom: 0.25rem;
}

.pub-doi {
    font-size: 0.85rem;
    font-family: monospace;
    color: var(--text-muted);
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.publication-card .text-link {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.publication-card .text-link:hover {
    opacity: 1;
    gap: 0.75rem;
}

/* ========================================
   AI INTAKE WIDGET
======================================== */
.intake {
    padding: 6rem 0;
    background: var(--bg-light);
}
.intake-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
.intake-info {
    padding-top: 1rem;
}
.intake-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.intake-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.intake-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.intake-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}
.intake-feature::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F8FAF9' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Form widget */
.form-widget {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.form-widget-header {
    background: var(--primary-color);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-step-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.form-step-count {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--bg-white);
}
.form-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}
.form-progress-fill {
    height: 100%;
    background: var(--bg-white);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-body {
    padding: 2.5rem;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.form-step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.form-step-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Form option chips */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}
.chip {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-white);
    user-select: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.chip:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 95, 68, 0.08);
}
.chip.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* Slider */
.slider-wrap {
    margin-bottom: 1rem;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 12px;
    color: var(--text-secondary);
}
input[type="range"].slider-custom {
    width: 100%;
    -webkit-appearance: none;
    height: 3px;
    background: var(--border-light);
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0;
}
input[type="range"].slider-custom::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: transform var(--transition-fast);
}
input[type="range"].slider-custom::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.slider-value {
    text-align: center;
    margin-top: 0.25rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Upload area */
.upload-area {
    border: 2px dashed var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    margin-bottom: 1rem;
}
.upload-area:hover {
    border-color: var(--primary-light);
}
.upload-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.upload-label {
    font-size: 13px;
    color: var(--text-secondary);
}
.upload-label strong {
    color: var(--primary-color);
    font-weight: 500;
}
.upload-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Form navigation */
.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: 1rem;
}
.form-nav-dots {
    display: flex;
    gap: 6px;
}
.form-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-light);
    transition: background var(--transition-fast);
}
.form-dot.active {
    background: var(--primary-color);
}
.form-dot.done {
    background: var(--primary-light);
}

/* Form result screen */
.form-result {
    text-align: center;
    padding: 1rem 0;
}
.form-result-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.form-result-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}
.form-result-category {
    background: var(--primary-color);
    color: var(--bg-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 1rem auto;
}
.form-result-summary {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}
.form-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 968px) {
    .intake-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.method-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-white);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--secondary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -0.5rem;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col li i {
    width: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll reveal animations will be handled by JavaScript */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-grid,
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ========================================
   FORM VALIDATION STATES
======================================== */
.form-input.valid,
.form-select.valid,
.form-textarea.valid {
    border-color: var(--accent-color);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #E57373;
}

.form-message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background-color: #E8F5E9;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.form-message.error {
    background-color: #FFEBEE;
    color: #C62828;
    border: 2px solid #E57373;
}

.form-message i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-message p {
    margin: 0;
    color: inherit;
}

.form-message strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    z-index: 999;
}

.scroll-to-top.inverted {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.scroll-to-top span {
    white-space: nowrap;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.inverted:hover {
    background-color: var(--bg-light);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
}

/* ========================================
   KEYBOARD NAVIGATION STYLES
======================================== */
body.keyboard-nav *:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

body:not(.keyboard-nav) *:focus {
    outline: none;
}

[tabindex]:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================================
   LOADING STATES
======================================== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   MODERN OVERWRITE STYLES (dy- prefix)
   Derived from specialized page sections
======================================== */

/* DY GLOBAL UTILITIES */
.dy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none !important;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.dy-btn-primary {
    background-color: var(--primary-color);
    color: white !important;
}

.dy-btn-primary:hover {
    background-color: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.dy-btn-secondary {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.dy-btn-secondary:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

.dy-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.dy-section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

/* DY NAVBAR */
.dy-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.dy-navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.dy-nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dy-nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-family: var(--font-display);
}

.dy-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.dy-nav-link {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.dy-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.dy-nav-link:hover::after,
.dy-nav-link.active::after {
    width: 100%;
}

.dy-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.dy-nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

@media (max-width: 968px) {
    .dy-nav-toggle {
        display: flex;
    }

    .dy-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }

    .dy-nav-link {
        font-size: 1.25rem;
        width: 100%;
        padding: 0.5rem 0;
    }
}

/* DY HERO */
.dy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.dy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.dy-hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.dy-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dy-hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dy-hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dy-italic-text {
    font-style: italic;
    color: var(--primary-color);
}

.dy-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dy-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.dy-hero-trust {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
}

.dy-trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* DY VALUES */
.dy-values-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.dy-values-container {
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.dy-value-item h2 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-display);
    font-weight: 500;
}

.dy-value-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-style: italic;
}

/* DY ABOUT */
.dy-about-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.dy-about-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.dy-about-intro {
    text-align: left;
}

/* ========================================
   ABOUT SECTION - BOXED REFINEMENT
   ======================================== */
.dy-about-section {
    background-color: #f7f9f8;
    /* Soft subtle sage */
    padding: 100px 0;
}

.dy-about-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.dy-about-intro {
    text-align: left;
}

.dy-about-intro .dy-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}

.dy-section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #555;
    line-height: 1.8;
}

.dy-v2-img-container {
    position: relative;
    z-index: 1;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 !important;
}

.dy-v2-img-wrapper {
    position: relative;
    border-radius: 24px !important;
    overflow: hidden !important;
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0 !important;
    height: auto !important;
}

.dy-v2-person-img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dy-v2-img-wrapper:hover .dy-v2-person-img {
    transform: scale(1.05);
}

.dy-v2-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid #4A8566;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.dy-v2-img-container:hover .dy-v2-img-accent {
    bottom: -25px;
    right: -25px;
    opacity: 0.5;
}

/* Experience Layout */
.dy-experience-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 4rem;
}

.dy-education-column h3,
.dy-experience-column h3 {
    font-size: 1.5rem;
    color: #2B5F44;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 0.75rem;
}

/* Timeline - Static */
.dy-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.dy-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: #F0F0F0;
}

.dy-timeline-item {
    position: relative;
    padding-left: 2.5rem;
}

.dy-timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2B5F44;
    border: 3px solid #F8FAF9;
    box-shadow: 0 0 0 3px #E8F5E9;
}

.dy-timeline-item .dy-time-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4A8566;
    margin-bottom: 0.5rem;
    display: block;
}

.dy-timeline-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
    font-family: 'Playfair Display', Georgia, serif;
}

.dy-timeline-item .dy-location {
    font-size: 0.9375rem;
    color: #6B6B6B;
    margin-bottom: 1rem;
    display: block;
}

/* Accordion Design */
.dy-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.dy-acc-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #F0F0F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.dy-acc-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #E8F5E9;
}

.dy-acc-card.active {
    background-color: #2B5F44;
    border-color: #2B5F44;
    box-shadow: 0 12px 32px rgba(43, 95, 68, 0.25);
}

.dy-acc-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.dy-acc-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dy-acc-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4A8566;
    transition: color 0.4s ease;
}

.dy-acc-card.active .dy-acc-tag {
    color: rgba(255, 255, 255, 0.8);
}

.dy-acc-title {
    font-size: 1.25rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: #1A1A1A;
    margin: 0;
    font-weight: 500;
    transition: color 0.4s ease;
}

.dy-acc-card.active .dy-acc-title {
    color: #FFFFFF;
}

.dy-acc-icon {
    color: #2B5F44;
    transition: all 0.5s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F0F0F0;
}

.dy-acc-card.active .dy-acc-icon {
    transform: rotate(180deg);
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.dy-acc-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 2rem;
}

.dy-acc-card.active .dy-acc-content {
    height: auto;
    opacity: 1;
    padding: 0 2rem 2rem 2rem;
}

.dy-acc-body {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dy-acc-card.active .dy-acc-body {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.dy-acc-location {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: #6B6B6B;
    font-weight: 500;
}

.dy-acc-card.active .dy-acc-location {
    color: rgba(255, 255, 255, 0.9);
}

.dy-acc-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dy-acc-bullets li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.dy-acc-card.active .dy-acc-bullets li {
    color: rgba(255, 255, 255, 0.9);
}

.dy-acc-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2B5F44;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    top: 2px;
}

.dy-acc-card.active .dy-acc-bullets li::before {
    color: #FFFFFF;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.dy-philosophy-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.dy-philosophy-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.dy-philosophy-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: #2B5F44;
}

.dy-philo-header {
    margin-bottom: 40px;
}

.dy-philo-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2B5F44;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.dy-philo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #1A1A1A;
    font-weight: 500;
    margin: 0;
}

.dy-philo-details {
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
}

.dy-philo-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0;
}

.dy-philo-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dy-philo-check {
    color: #2B5F44;
    font-size: 1.1rem;
}

.dy-philo-txt {
    color: #4A4A4A;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* DY FORM REFINEMENTS */
.dy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dy-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dy-contact-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.dy-btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.dy-container {
    max-width: 1200px;
    padding: 0 2rem;
}

.dy-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2B5F44;
    margin-bottom: 1rem;
}

.dy-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}

/* Philosophy Section */
.dy-philosophy-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.dy-philosophy-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 45px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
}

.dy-philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(43, 95, 68, 0.1);
}

.dy-philosophy-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2B5F44;
    transform: scaleY(0.7);
    transition: all 0.5s ease;
    opacity: 0.5;
}

.dy-philosophy-card:hover::before {
    transform: scaleY(1);
    opacity: 1;
}

.dy-philo-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dy-philo-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dy-philo-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2B5F44;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.dy-philo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #1A1A1A;
    font-weight: 500;
    margin: 0;
}

.dy-philo-details {
    display: block;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(43, 95, 68, 0.1);
}

.dy-philo-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0;
}

.dy-philo-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dy-philo-check {
    color: #2B5F44;
    font-size: 1.2rem;
    margin-top: 3px;
}

.dy-philo-txt {
    color: #4A4A4A;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Publications Section */
.dy-publications-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #F0F0F0;
    z-index: 1;
}

.dy-publications-container {
    max-width: 1400px;
    width: 95%;
    padding: 0 2rem;
    margin: 0 auto;
}

.dy-publications-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dy-publication-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem 1.75rem;
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.dy-publication-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(43, 95, 68, 0.25);
    border-color: rgba(43, 95, 68, 0.3);
}

.dy-publication-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2B5F44, #4A8566);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.dy-publication-card:hover::before {
    transform: scaleX(1);
}

.dy-pub-icon {
    width: 56px;
    height: 56px;
    background-color: #F5F9F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B5F44;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dy-pub-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dy-pub-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: 'Playfair Display', Georgia, serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dy-pub-year-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2B5F44;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.dy-pub-meta {
    font-size: 0.875rem;
    color: #888;
    font-weight: 500;
    line-height: 1.5;
}

.dy-pub-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    background-color: #F5F9F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B5F44;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.dy-publication-card:hover .dy-pub-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .dy-publications-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .dy-container {
        padding: 0 1.25rem;
    }

    .dy-publications-section,
    .dy-philosophy-section {
        padding: 60px 0;
    }

    .dy-philosophy-card {
        padding: 35px 20px;
    }

    .dy-philo-title {
        font-size: 1.6rem;
    }

    .dy-philo-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dy-publications-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .dy-publication-card {
        padding: 1.75rem 1.25rem;
        gap: 1.25rem;
    }

    .dy-pub-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .dy-pub-year-label {
        font-size: 0.7rem;
    }

    .dy-pub-content h3 {
        font-size: 1.1rem;
    }

    .dy-pub-meta {
        font-size: 0.85rem;
    }

    .dy-pub-arrow {
        right: 1.25rem;
        bottom: 1.5rem;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .dy-philosophy-section,
    .dy-publications-section {
        padding: 50px 0;
    }

    .dy-philo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dy-philo-title {
        font-size: 1.45rem;
    }

    .dy-philo-item {
        gap: 12px;
    }

    .dy-philo-txt {
        font-size: 0.95rem;
    }
}

/* Smallest phones (<380px) */
@media (max-width: 380px) {
    .dy-pub-icon {
        display: none;
    }

    .dy-publication-card {
        padding: 1.25rem;
    }

    .dy-philo-card {
        padding: 30px 15px;
    }
}

/* DY FOOTER REFINEMENTS */
.dy-footer {
    background-color: #2D5A43;
    color: white;
    padding: 6rem 0 4rem;
}

.dy-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.dy-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.dy-footer-simple-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.dy-footer-simple-list li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.dy-footer-socials {
    display: flex;
    gap: 1rem;
}

.dy-social-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.dy-social-icon:hover {
    background-color: #f0f4f2;
    /* Soft light ivory/grey background */
    color: #2D5A43;
    /* Dark green icon on hover */
    border-color: #f0f4f2;
    transform: translateY(-3px);
}

.dy-footer-menu-col h4,
.dy-footer-info-col h4 {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

.dy-footer-list {
    list-style: none;
    padding: 0;
}

.dy-footer-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.dy-footer-list i {
    width: 20px;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.dy-footer-bottom {
    text-align: center;
    position: relative;
    padding-top: 1rem;
}

.dy-footer-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 2rem;
}

.dy-copyright {
    display: block;
    font-size: 0.9rem;
    color: #FFFFFF;
    opacity: 0.85;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.dy-footer-sublabel {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: 0;
}

.dy-footer {
    overflow: hidden;
    /* Contains child margins */
}

@media (max-width: 968px) {
    .dy-footer-bottom {
        padding-top: 2rem;
    }

    .dy-about-top {
        grid-template-columns: 1fr;
    }

    .dy-experience-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dy-approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dy-contact-layout {
        grid-template-columns: 1fr;
    }

    .dy-form-row {
        grid-template-columns: 1fr;
    }

    .dy-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dy-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.dy-contact-section {
    background-color: #fcfcfc;
    padding: 120px 0;
}

.dy-contact-layout {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.dy-contact-info {
    flex: 0 0 42%;
}

.dy-contact-description {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dy-contact-meta {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #888;
    font-weight: 500;
}

.dy-contact-form-wrapper {
    flex: 1;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.dy-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dy-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dy-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dy-form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 0.5px;
}

.dy-form-input,
.dy-form-select,
.dy-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #f8faf9;
    border: 1px solid #edf0ee;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.dy-form-input:focus,
.dy-form-select:focus,
.dy-form-textarea:focus {
    outline: none;
    border-color: #2B5F44;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(43, 95, 68, 0.05);
}

.dy-form-input::placeholder,
.dy-form-textarea::placeholder {
    color: #aaa;
}

.dy-form-footer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin-top: -0.5rem;
}

.dy-form-btn {
    width: 100%;
    background-color: #2D5A43;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dy-form-btn:hover {
    background-color: #234835;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(43, 91, 68, 0.2);
}

/* Specific styling for Date picker to match theme */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(34%) sepia(21%) saturate(942%) hue-rotate(101deg) brightness(98%) contrast(92%);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .dy-contact-layout {
        flex-direction: column;
        gap: 4rem;
    }

    .dy-contact-info,
    .dy-contact-form-wrapper {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .dy-contact-section {
        padding: 80px 0;
    }

    .dy-contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .dy-form-row {
        grid-template-columns: 1fr;
    }
}

/* WHATSAPP FLOAT */
.dy-whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2.5rem;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: dy-pulse-green 2s infinite;
}

.dy-whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes dy-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .dy-whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}