/* =================================================================
   MODERN ABOUT PAGE - HERMES ORANGE THEME
   ================================================================= */

/* Dynamic Hero Section */
.dynamic-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, 
        var(--cream-primary) 0%,
        var(--cream-light) 50%,
        var(--cream-soft) 100%);
    overflow: hidden;
}

.hero-animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.08) 0%,
        rgba(255, 165, 0, 0.05) 100%);
    border-radius: 20px;
    animation: float-geometric 12s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    transform: rotate(-30deg);
    animation-delay: 4s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    transform: rotate(60deg);
    animation-delay: 2s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    transform: rotate(-45deg);
    animation-delay: 6s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 5%;
    transform: rotate(30deg);
    animation-delay: 8s;
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 25%;
    right: 20%;
    animation-delay: 4s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 60%;
    animation-delay: 2s;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-badge-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.15);
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hermes-orange);
    letter-spacing: 0.02em;
    width: fit-content;
    overflow: hidden;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 140, 0, 0.3),
        rgba(255, 165, 0, 0.2),
        rgba(255, 140, 0, 0.3));
    border-radius: 62px;
    filter: blur(10px);
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero-title-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 0.9;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%,
        var(--hermes-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.hero-accent {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hermes-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 550px;
}

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

.metric-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(255, 140, 0, 0.3);
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--hermes-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover .metric-glow {
    opacity: 1;
}

.hero-action-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.primary-hero-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-hermes-orange);
    border: none;
    border-radius: 60px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-luxury);
}

.primary-hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
}

.secondary-hero-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 60px;
    color: var(--hermes-orange);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-hero-btn:hover {
    background: rgba(255, 140, 0, 0.15);
    transform: translateY(-3px);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
}

.hero-right-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-image-showcase {
    position: relative;
}

.image-frame-modern {
    position: relative;
    width: 450px;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 140, 0, 0.1);
    box-shadow: var(--shadow-luxury);
}

.doctor-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-frame-modern:hover .doctor-portrait {
    transform: scale(1.1);
}

.image-overlay-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, 
        rgba(255, 140, 0, 0.2) 0%,
        transparent 100%);
}

.sparkle-effect {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: sparkle-float 4s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.sparkle-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.credential-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-medium);
    animation: badge-float 3s ease-in-out infinite;
}

.credential-floating-badge i {
    color: var(--hermes-orange);
    font-size: 1.25rem;
}

/* Interactive Story Section */
.interactive-story-section {
    position: relative;
    padding: 120px 0;
    background: var(--cream-soft);
    overflow: hidden;
}

.story-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.pattern-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 140, 0, 0.1) 50%,
        transparent 100%);
}

.grid-line:nth-child(1) {
    top: 25%;
    width: 100%;
    height: 1px;
}

.grid-line:nth-child(2) {
    top: 50%;
    width: 100%;
    height: 1px;
}

.grid-line:nth-child(3) {
    top: 75%;
    width: 100%;
    height: 1px;
}

.grid-line:nth-child(4) {
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 140, 0, 0.1) 50%,
        transparent 100%);
}

.story-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hermes-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--hermes-orange) 0%,
        rgba(255, 140, 0, 0.3) 100%);
    border-radius: 2px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.story-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.story-content-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.story-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(255, 140, 0, 0.3);
}

.card-icon-wrapper {
    margin-bottom: 2rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 100%);
    border-radius: 20px;
    color: var(--hermes-orange);
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.story-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.25) 0%,
        rgba(255, 165, 0, 0.2) 100%);
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 140, 0, 0.1) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.story-card:hover .card-hover-effect {
    left: 100%;
}

/* Expertise Showcase Section */
.expertise-showcase-section {
    position: relative;
    padding: 120px 0;
    background: var(--cream-primary);
    overflow: hidden;
}

.expertise-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.diagonal-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-15deg);
    overflow: hidden;
}

.diagonal-line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 140, 0, 0.15) 50%,
        transparent 100%);
}

.diagonal-line:nth-child(1) {
    top: 20%;
    left: -50%;
}

.diagonal-line:nth-child(2) {
    top: 50%;
    left: -50%;
}

.diagonal-line:nth-child(3) {
    top: 80%;
    left: -50%;
}

.expertise-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expertise-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.skills-header {
    margin-bottom: 3rem;
}

.skills-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.skill-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 140, 0, 0.3);
}

.skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 100%);
    border-radius: 15px;
    color: var(--hermes-orange);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.25) 0%,
        rgba(255, 165, 0, 0.2) 100%);
}

.skill-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.skill-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.skill-progress {
    width: 80px;
    height: 6px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-hermes-orange);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease;
}

/* Credentials Column */
.credentials-showcase {
    position: sticky;
    top: 120px;
}

.credentials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

.timeline-line {
    position: absolute;
    left: 3rem;
    top: 3rem;
    bottom: 3rem;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--hermes-orange) 0%,
        rgba(255, 140, 0, 0.5) 50%,
        var(--hermes-orange) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-left: 1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hermes-orange);
    border-radius: 50%;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hermes-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Location Experience Section */
.location-experience-section {
    position: relative;
    padding: 120px 0;
    background: var(--cream-light);
    overflow: hidden;
}

.location-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-svg {
    width: 100%;
    height: 100%;
}

.location-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: start;
}

.showcase-header {
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.showcase-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(255, 140, 0, 0.3);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 100%);
    border-radius: 18px;
    color: var(--hermes-orange);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-modern {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.25) 0%,
        rgba(255, 165, 0, 0.2) 100%);
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Location Info Panel */
.location-info-panel {
    position: sticky;
    top: 120px;
}

.info-panel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-panel-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-panel-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.video-showcase {
    margin-bottom: 3rem;
}

.video-container-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-medium);
}

.clinic-video {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container-modern:hover .video-play-overlay {
    opacity: 0;
}

.play-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.9);
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
    animation: pulse-play 2s ease-in-out infinite;
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-block,
.hours-block {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.address-block:hover,
.hours-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 140, 0, 0.3);
}

.detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 100%);
    border-radius: 15px;
    color: var(--hermes-orange);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.directions-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-hermes-orange);
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.hour-item span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.hour-item span:last-child {
    color: var(--hermes-orange);
    font-weight: 500;
}

/* Why Choose Modern Section */
.why-choose-modern-section {
    position: relative;
    padding: 120px 0;
    background: var(--cream-soft);
    overflow: hidden;
}

.choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hexagon-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hexagon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 140, 0, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float-hex 10s ease-in-out infinite;
}

.hex-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hex-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.hex-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.hex-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.hex-5 {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

.hex-6 {
    top: 70%;
    right: 30%;
    animation-delay: 3s;
}

.choose-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.choose-header {
    text-align: center;
    margin-bottom: 5rem;
}

.choose-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.choose-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.advantages-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(255, 140, 0, 0.3);
}

.advantage-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 140, 0, 0.15);
    line-height: 1;
}

.advantage-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 100%);
    border-radius: 22px;
    color: var(--hermes-orange);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.25) 0%,
        rgba(255, 165, 0, 0.2) 100%);
}

.advantage-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.advantage-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.card-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.advantage-card:hover .card-shine-effect {
    left: 100%;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--cream-primary);
    overflow: hidden;
}

.cta-modern-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: float-gradient 15s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.gradient-orb.orb-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.cta-modern-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 140, 0, 0.15);
    border-radius: 35px;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    overflow: hidden;
}

.cta-header-modern {
    margin-bottom: 3rem;
}

.cta-header-modern h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-header-modern p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-benefits-modern {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.benefit-modern i {
    color: var(--hermes-orange);
    font-size: 1.5rem;
}

.cta-actions-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-primary-modern {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--gradient-hermes-orange);
    border: none;
    border-radius: 60px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-luxury);
}

.cta-primary-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 140, 0, 0.4);
}

.btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(255, 140, 0, 0.5) 0%,
        rgba(255, 165, 0, 0.3) 100%);
    border-radius: 70px;
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-primary-modern:hover .btn-glow {
    opacity: 1;
}

.cta-secondary-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 60px;
    color: var(--hermes-orange);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary-modern:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float-geometric {
    0%, 100% {
        transform: translateY(0px) rotate(45deg);
    }
    50% {
        transform: translateY(-30px) rotate(60deg);
    }
}

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

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

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

@keyframes float-hex {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes pulse-play {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .image-frame-modern {
        width: 400px;
        height: 480px;
    }
    
    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .location-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-metrics-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dynamic-hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-accent {
        font-size: 1rem;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .choose-header h2 {
        font-size: 2.75rem;
    }
    
    .cta-header-modern h2 {
        font-size: 2.75rem;
    }
    
    .image-frame-modern {
        width: 350px;
        height: 420px;
    }
    
    .hero-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-benefits-modern {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-content-modern {
        padding: 3rem 2rem;
    }
    
    .story-content-layout {
        grid-template-columns: 1fr;
    }
    
    .credentials-showcase {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper,
    .story-container,
    .expertise-container,
    .location-container,
    .choose-container,
    .cta-modern-container {
        padding: 0 1rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .choose-header h2 {
        font-size: 2rem;
    }
    
    .cta-header-modern h2 {
        font-size: 2rem;
    }
    
    .image-frame-modern {
        width: 300px;
        height: 380px;
    }
    
    .story-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content-modern {
        padding: 2.5rem 1.5rem;
    }
    
    .timeline-wrapper {
        padding: 1.5rem;
    }
    
    .timeline-item {
        gap: 1.5rem;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

/* Progress Bar Animation Trigger */
.skill-item.animate .progress-bar[data-progress="98"] {
    width: 98%;
}

.skill-item.animate .progress-bar[data-progress="95"] {
    width: 95%;
}

.skill-item.animate .progress-bar[data-progress="92"] {
    width: 92%;
}

.skill-item.animate .progress-bar[data-progress="96"] {
    width: 96%;
}

/* Enhanced Hover States */
.metric-card:nth-child(1):hover {
    border-color: rgba(255, 140, 0, 0.4);
}

.metric-card:nth-child(2):hover {
    border-color: rgba(255, 165, 0, 0.4);
}

.metric-card:nth-child(3):hover {
    border-color: rgba(255, 122, 0, 0.4);
}

/* Advanced Visual Effects */
.advantage-card:hover .advantage-number {
    color: rgba(255, 140, 0, 0.3);
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
}

.story-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 100%);
}

.story-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, 
        rgba(255, 165, 0, 0.15) 0%,
        rgba(255, 140, 0, 0.1) 100%);
}

.story-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, 
        rgba(255, 122, 0, 0.15) 0%,
        rgba(255, 140, 0, 0.1) 100%);
}
