:root { --primary: #D91E36; --primary-gradient: linear-gradient(135deg, #E11D48 0%, #BE123C 100%); --primary-hover: #BE123C; --primary-light: #FFE4E6; --primary-glow: rgba(217, 30, 54, 0.25); --navy-dark: #0B132B; --navy: #0F172A; --navy-light: #1E293B; --navy-glass: rgba(15, 23, 42, 0.92); --bg-body: #FFFFFF; --bg-surface: #F8FAFC; --bg-glass: rgba(255, 255, 255, 0.88); --text-main: #0F172A; --text-muted: #475467; --text-light: #94A3B8; --border-subtle: #E2E8F0; --border-glass: rgba(226, 232, 240, 0.8); --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 9999px; --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05); --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.04); --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06); --shadow-glow: 0 8px 24px -4px rgba(217, 30, 54, 0.35); --ease-spring: cubic-bezier(0.16, 1, 0.3, 1); --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } @media (min-width: 769px) { html { scroll-behavior: smooth; } } body { font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-main); background: var(--bg-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a { color: inherit; text-decoration: none; transition: all 0.25s var(--ease-spring); } main { font-size: 18px; } main h1, main h2, main h3, .card h3, .service-card h3, .policy-card h2, .faq-item h3, .value-card h3 { font-family: 'Outfit', sans-serif; letter-spacing: -0.01em; color: var(--navy); } main p, main li, .grid-cell-label { font-family: 'Source Sans 3', sans-serif; } .hero-cta, .card-btn, .btn, .submit-btn, .service-read { font-family: 'Outfit', sans-serif; letter-spacing: 0.02em; } .info-bar { background: var(--navy-dark); color: #F1F5F9; font-size: 15px; padding: 10px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-weight: 500; } .info-bar a { color: #FFFFFF; font-weight: 600; position: relative; } .info-bar a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--primary); transition: width 0.25s var(--ease-spring); } .info-bar a:hover::after { width: 100%; } .info-bar a:hover { color: #F8FAFC; } .info-right { font-weight: 600; color: #CBD5E1; display: flex; align-items: center; gap: 8px; } .top-header { position: sticky; top: 0; z-index: 1000; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 12px 32px; background: var(--bg-glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-glass); box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04); transition: all 0.3s var(--ease-smooth); } .logo { display: flex; align-items: center; gap: 12px; } .logo img { height: 100px; width: auto; display: block; transition: transform 0.3s var(--ease-spring); } .logo:hover img { transform: scale(1.03); } .top-actions { display: flex; gap: 14px; align-items: center; } .btn { padding: 12px 26px; border-radius: var(--radius-full); font-size: 16px; font-weight: 700; cursor: pointer; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.25s var(--ease-spring); box-shadow: var(--shadow-sm); } .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); } .btn:active { transform: translateY(0); } .btn-navy { background: var(--navy); color: #FFFFFF; } .btn-navy:hover { background: var(--navy-light); box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.3); } .btn-red { background: var(--primary-gradient); color: #FFFFFF; box-shadow: var(--shadow-glow); } .btn-red:hover { background: linear-gradient(135deg, #BE123C 0%, #9F1239 100%); box-shadow: 0 10px 28px -4px rgba(217, 30, 54, 0.45); } .btn-dark { background: #FFFFFF; color: var(--primary); border: 1.5px solid var(--primary); } .btn-dark:hover { background: var(--primary-light); color: var(--primary-dark); } .main-nav { background: transparent; flex: 1; margin-left: 12px; position: static; } .main-nav > ul { display: flex; list-style: none; justify-content: center; align-items: center; width: 100%; gap: 12px; } .main-nav > ul > li { position: static; } .dropdown { position: static; } .main-nav ul li a { display: block; padding: 12px 18px; font-size: 18px; font-weight: 700; color: var(--navy); border-radius: var(--radius-sm); position: relative; transition: all 0.25s var(--ease-spring); } .main-nav > ul > li > a:not(.has-arrow)::before { content: ''; position: absolute; bottom: 6px; left: 18px; right: 18px; height: 2.5px; background: var(--primary-gradient); border-radius: var(--radius-full); transform: scaleX(0); transform-origin: center; transition: transform 0.25s var(--ease-spring); pointer-events: none; } .main-nav > ul > li > a:not(.has-arrow).active::before, .main-nav > ul > li > a:not(.has-arrow):hover::before, .main-nav > ul > li > a:not(.has-arrow):focus-visible::before { transform: scaleX(1); } .main-nav ul li a.active, .main-nav ul li a:hover, .main-nav ul li a:focus-visible { color: var(--primary); background: rgba(217, 30, 54, 0.04); } .has-arrow { position: relative; display: inline-flex; align-items: center; gap: 4px; } .has-arrow::before { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 35px; background: transparent; transform: none !important; pointer-events: auto !important; z-index: 110; } .has-arrow::after { content: '\25BE'; font-size: 15px; font-weight: 800; margin-left: 2px; display: inline-block; vertical-align: middle; color: var(--navy-light); transition: transform 0.25s var(--ease-spring); } .dropdown:hover .has-arrow::after, .dropdown:focus-within .has-arrow::after { transform: rotate(180deg); color: var(--primary); } .dropdown-menu { display: grid; position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(14px) scale(0.98); width: min(1240px, calc(100vw - 48px)); background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-glass); box-shadow: var(--shadow-lg); z-index: 120; padding: 32px; grid-template-columns: repeat(4, minmax(160px, 1fr)); column-gap: 32px; row-gap: 12px; align-items: start; border-radius: var(--radius-lg); opacity: 0; visibility: hidden; transition: all 0.25s var(--ease-spring); pointer-events: none; } .dropdown-menu::before { content: ""; position: absolute; top: -35px; left: 0; right: 0; height: 35px; background: transparent; pointer-events: auto; } .dropdown:hover > .dropdown-menu, .dropdown:focus-within > .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); pointer-events: auto; } .dropdown-col { list-style: none; margin: 0; padding: 0; } .dropdown-col li { list-style: none; margin: 0; } .dropdown-col li a { display: block; padding: 10px 14px; font-size: 15px; line-height: 1.4; font-weight: 600; color: var(--text-muted); border-radius: var(--radius-sm); transition: all 0.2s var(--ease-spring); } .dropdown-col li a::after { display: none; } .dropdown-col li a:hover { color: var(--primary); background: var(--primary-light); transform: translateX(4px); } .dropdown-image { display: block; } .dropdown-image img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease-spring); } .dropdown-image:hover img { transform: scale(1.03); } .dropdown-image-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); } .hero { position: relative; min-height: 580px; background: url('../images/home_page.webp') center 35%/cover no-repeat; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; } .hero > h1, .hero > p { width: 100%; padding-inline: 20px; text-align: center; } body.layout-service-detail .hero, body.layout-services-index .hero, body.layout-policy .hero, body.layout-medications .hero, body.layout-free-delivery .hero, body.layout-contact .hero { flex-direction: column; padding: 100px 20px 90px; min-height: 320px; text-align: center; } body.layout-service-detail .hero h1, body.layout-services-index .hero h1 { font-size: 46px; margin-bottom: 12px; } body.layout-service-detail .hero p, body.layout-services-index .hero p { font-size: 22px; max-width: 860px; margin: 0 auto; color: #f0f0f0; line-height: 1.8; } .hero-bg { display: none; } .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.50) 50%, rgba(15, 23, 42, 0.80) 100%); backdrop-filter: blur(2px); } .hero-content { position: relative; text-align: center; padding: 80px 32px; z-index: 2; animation: heroFadeIn 0.8s var(--ease-spring) forwards; } @keyframes heroFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .hero-content h1, .hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; color: #FFFFFF; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5); line-height: 1.15; margin-bottom: 24px; max-width: 820px; margin-left: auto; margin-right: auto; } .hero p, .hero-content p { font-size: clamp(1.15rem, 2vw, 1.35rem); color: #E2E8F0; max-width: 780px; margin: 0 auto 32px; line-height: 1.75; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); } .hero-cta { background: var(--primary-gradient); color: #FFFFFF; border: none; padding: 16px 38px; font-size: 18px; font-weight: 700; border-radius: var(--radius-full); cursor: pointer; transition: all 0.3s var(--ease-spring); display: inline-block; box-shadow: 0 10px 25px -5px rgba(217, 30, 54, 0.5); } .hero-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 32px -6px rgba(217, 30, 54, 0.65); } .cards-row { display: flex; gap: 24px; justify-content: center; padding: 64px 32px; background: var(--bg-surface); margin-top: -40px; position: relative; z-index: 10; } .card { flex: 1; max-width: 380px; background: #FFFFFF; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 40px 28px 32px; text-align: center; box-shadow: var(--shadow-md); transition: all 0.35s var(--ease-spring); display: flex; flex-direction: column; align-items: center; } .card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(217, 30, 54, 0.3); } .card-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%); color: var(--primary); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 34px; box-shadow: 0 8px 16px -4px rgba(217, 30, 54, 0.15); transition: transform 0.3s var(--ease-spring); } .card:hover .card-icon { transform: scale(1.1) rotate(4deg); } .card h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 16px; } .card p { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-bottom: 24px; flex: 1; } .card-btn { background: var(--primary-gradient); color: #FFFFFF; border: none; padding: 12px 28px; font-size: 16px; font-weight: 700; border-radius: var(--radius-full); cursor: pointer; transition: all 0.25s var(--ease-spring); display: inline-block; box-shadow: 0 4px 12px -2px rgba(217, 30, 54, 0.3); margin-top: auto; } .card-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(217, 30, 54, 0.5); } .hello-section, .compound-section, .services-intro { max-width: 1140px; margin: 0 auto; padding: 72px 32px; text-align: center; } .content { max-width: 1140px; margin: 0 auto; padding: 60px 32px 80px; text-align: center; } body.layout-service-detail .content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; text-align: left; max-width: 1120px; padding: 42px 32px 64px; } body.layout-medications .content { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: start; text-align: left; } body.layout-policy .content { text-align: left; } @media (max-width: 1100px) { body.layout-medications .content { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 900px) { body.layout-medications .content { grid-template-columns: 1fr; } } body.layout-services-index .content { display: block; max-width: 1180px; padding: 40px 24px 64px; } body.layout-services-index .services-intro { text-align: center; max-width: 880px; margin: 0 auto 24px; padding: 0; } body.layout-services-index .services-intro h2 { font-size: 42px; color: #1a1a2e; margin-bottom: 12px; } body.layout-services-index .services-intro p { line-height: 1.85; color: #475467; font-size: 22px; margin: 0; } .hello-section h2, .compound-section h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 24px; } .hello-section p, .compound-section p { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.85; color: var(--text-muted); max-width: 900px; margin: 0 auto 20px; } .compound-section { background: var(--bg-surface); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); border-radius: var(--radius-xl); margin: 32px auto; } .stats-bar { background: var(--primary-gradient); padding: 36px 32px; box-shadow: var(--shadow-md); } .stats-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 28px; } .stat { text-align: center; color: #FFFFFF; } .stat-number { font-family: 'Outfit', sans-serif; font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; line-height: 1; display: block; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } .stat-label { font-size: 16px; font-weight: 600; opacity: 0.95; margin-top: 6px; display: block; letter-spacing: 0.02em; } .intro-section { max-width: 1180px; margin: 0 auto; padding: 72px 32px; display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: center; } .photo { min-height: 480px; border-radius: var(--radius-xl); background-position: center; background-size: cover; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; transition: transform 0.4s var(--ease-spring); } .photo:hover { transform: scale(1.01); } .intro-text h2 { font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 24px; line-height: 1.25; } .intro-text p { font-size: 18px; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; } .values-section { background: var(--bg-surface); padding: 80px 32px; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); } .values-inner { max-width: 1140px; margin: 0 auto; } .values-inner h2 { font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 48px; } .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; } .value-card, .policy-card, .section { background: #FFFFFF; border-radius: var(--radius-lg); padding: 36px 30px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-md); transition: all 0.3s var(--ease-spring); } .value-card:hover, .policy-card:hover, .section:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(217, 30, 54, 0.25); } .section { border-top: 5px solid var(--primary); text-align: left; margin-bottom: 28px; } .section:last-child { margin-bottom: 0; } .section h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.3; } .section p { font-size: 18px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; } .section p:last-child { margin-bottom: 0; } .section ul:not(.dropdown-col), .section ol, .content ul:not(.dropdown-col), .content ol { text-align: left; padding-left: 24px; margin-top: 12px; margin-bottom: 16px; } .section li, .content li { text-align: left; font-size: 18px; line-height: 1.8; color: var(--text-muted); margin-bottom: 8px; padding-left: 4px; } .section li:last-child, .content li:last-child { margin-bottom: 0; } .section.pet-care { grid-column: 1 / -1; border-color: #FCA5A5; background: #FFF5F5; } .value-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #FFF1F2, #FFE4E6); color: var(--primary); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 20px; } .value-card h3, .policy-card h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 14px; } body.layout-service-detail .section h2 { font-size: 34px; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; line-height: 1.3; } .value-card p, .policy-card p { font-size: 17px; line-height: 1.8; color: var(--text-muted); } body.layout-service-detail .section p { font-size: 21px; line-height: 1.9; color: #444; } body.layout-service-detail .section li { font-size: 21px; line-height: 1.9; color: #444; padding-left: 4px; } body.layout-service-detail .section ul { padding-left: 22px; } .services-section { padding: 64px 0 0; } .services-section h2 { text-align: center; font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--primary); margin-bottom: 36px; letter-spacing: -0.01em; } .photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 16px 32px; max-width: 1440px; margin: 0 auto; } .grid-cell { aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; font-size: 32px; background-size: cover; background-position: center; position: relative; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease-spring); } .grid-cell:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); z-index: 5; } .gc-1 { background-image: url('../images/dreamstime_xxl_392532054.webp'); } .gc-2 { background-image: url('../images/dreamstime_m_119764842.webp'); } .gc-3 { background-image: url('../images/prescription-management.webp'); } .gc-4 { background-image: url('../images/dreamstime_l_129872537 29.webp'); } .gc-5 { background-image: url('../images/compounding.webp'); } .gc-6 { background-image: url('../images/med-planning.webp'); } .gc-7 { background-image: url('../images/dreamstime_xxl_214355161.webp'); } .gc-8 { background-image: url('../images/dreamstime_xxl_376704595.webp'); } .gc-9 { background-image: url('../images/dreamstime_m_21832760.webp'); } .gc-10 { background-image: url('../images/medication-review.webp'); } .gc-11 { background-image: url('../images/dreamstime_m_77696435.webp'); } .gc-12 { background-image: url('../images/wellness-support.webp'); } .gc-13 { background-image: url('../images/dreamstime_xl_136041106.webp'); } .gc-14 { background-image: url('../images/clinical-services.webp'); } .gc-15 { background-image: url('../images/animal-care.webp'); } .gc-16 { background-image: url('../images/preventive-care.webp'); } .gc-17 { background-image: url('../images/dreamstime_xxl_39908686.webp'); } .gc-18 { background-image: url('../images/home_page.webp'); } .grid-cell-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.35) 100%); color: #FFFFFF; font-size: 22px; font-weight: 700; text-align: center; padding: 16px; gap: 6px; transition: all 0.35s var(--ease-spring); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); } .grid-cell:hover .grid-cell-label { background: linear-gradient(135deg, rgba(217, 30, 54, 0.88) 0%, rgba(190, 18, 60, 0.88) 100%); backdrop-filter: blur(4px); } .service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; } .service-card { background: #FFFFFF; border: 1px solid #e6e9ef; border-radius: 12px; padding: 22px 20px; box-shadow: 0 8px 20px rgba(17,24,39,.06); display: flex; flex-direction: column; min-height: 250px; transition: all 0.3s var(--ease-spring); } .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(217, 30, 54, 0.3); } .service-card h3 { font-size: 28px; color: #101828; margin-bottom: 10px; line-height: 1.3; } .service-card p { color: #475467; line-height: 1.7; font-size: 21px; margin-bottom: 16px; flex: 1; } .service-read { margin-top: auto; align-self: flex-start; background: var(--primary-gradient); color: #FFFFFF; border-radius: var(--radius-full); padding: 12px 24px; font-size: 16px; font-weight: 700; transition: all 0.25s var(--ease-spring); box-shadow: 0 4px 12px -2px rgba(217, 30, 54, 0.3); } .service-read:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -4px rgba(217, 30, 54, 0.5); } .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: #FFFFFF; padding: 40px; border-radius: var(--radius-xl); border: 1px solid var(--border-subtle); box-shadow: var(--shadow-md); } .field { display: flex; flex-direction: column; gap: 8px; text-align: left; } .field-full { grid-column: 1 / -1; } label { font-size: 17px; font-weight: 700; color: var(--navy); } input, textarea, select { width: 100%; border: 1.5px solid #CBD5E1; border-radius: var(--radius-md); padding: 14px 16px; font: inherit; font-size: 17px; color: var(--text-main); background: #FFFFFF; transition: all 0.2s var(--ease-spring); } textarea { min-height: 140px; resize: vertical; } input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(217, 30, 54, 0.15); } .submit-btn { margin-top: 16px; border: 0; background: var(--primary-gradient); color: #FFFFFF; font-size: 18px; font-weight: 700; padding: 16px 36px; border-radius: var(--radius-full); cursor: pointer; transition: all 0.3s var(--ease-spring); box-shadow: var(--shadow-glow); } .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -4px rgba(217, 30, 54, 0.55); } .submit-btn:disabled { background: #94A3B8; cursor: not-allowed; box-shadow: none; transform: none; } .required-note { margin-top: 16px; font-size: 16px; color: var(--text-light); } .form-msg { display: none; margin-top: 20px; padding: 16px 20px; border-radius: var(--radius-md); font-size: 16px; font-weight: 600; } .form-msg.success { display: block; background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; } .form-msg.error { display: block; background: #FFF1F2; color: #9F1239; border: 1px solid #FECDD3; } .mission-section { background: #1a1a2e; padding: 64px 32px; text-align: center; } .mission-section h2 { font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.3; } .mission-section p { max-width: 820px; margin: 0 auto 28px; font-size: 20px; line-height: 1.85; color: #b0bac9; } .mission-section .btn { margin: 0 8px; } .map-section, .contact-map { height: 380px; background: var(--bg-surface); display: block; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); position: relative; overflow: hidden; } .map-section iframe, .contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: contrast(1.02) saturate(1.05); } .faq-section { max-width: 1024px; margin: 0 auto; padding: 80px 32px; } .faq-section h2 { text-align: center; font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 40px; } .faq-item { background: #FFFFFF; border: 1px solid var(--border-subtle); border-left: 5px solid var(--primary); border-radius: var(--radius-md); padding: 26px 28px; margin-bottom: 16px; box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease-spring); } .faq-item:hover { box-shadow: var(--shadow-md); transform: translateX(6px); } .faq-item h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; } .faq-item p { color: var(--text-muted); line-height: 1.75; font-size: 17px; } footer { background: var(--navy-dark); color: #F8FAFC; padding: 64px 32px 32px; border-top: 4px solid var(--primary); } .footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(200px, 1fr)); gap: 36px; align-items: start; text-align: left; } .footer-col { min-width: 0; } footer .footer-label { color: var(--primary); font-weight: 800; font-size: 18px; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; display: block; } .footer-col p, .footer-col div, .footer-col a { font-size: 16px; line-height: 1.8; color: #CBD5E1; } footer a { color: #E2E8F0; transition: color 0.2s var(--ease-spring); } footer a:hover { color: var(--primary); } .footer-bottom { max-width: 1240px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #94A3B8; } .footer-links a { color: #94A3B8; margin-right: 16px; } .footer-links a:last-child { margin-right: 0; } .footer-links a:hover { color: #FFFFFF; } @media (max-width: 1650px) { .main-nav ul li a { padding: 12px 12px; font-size: 17px; } .top-header { gap: 16px; padding: 12px 24px; } .logo img { height: 90px; } } @media (max-width: 1450px) { .main-nav ul li a { padding: 10px 8px; font-size: 16px; } .top-actions .btn { padding: 10px 18px; font-size: 15px; } .logo img { height: 80px; } } @media (max-width: 1250px) { .main-nav ul li a { padding: 8px 6px; font-size: 15px; } .top-actions .btn { padding: 8px 14px; font-size: 14px; } .logo img { height: 72px; } } @media (max-width: 1100px) { .intro-section { grid-template-columns: 1fr; } body.layout-service-detail .content { grid-template-columns: 1fr; } .photo-grid { grid-template-columns: repeat(2, 1fr); } .service-grid, .values-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 900px) { .top-header { padding: 12px 16px; } .logo img { height: 64px; } .info-bar { padding: 10px 16px; font-size: 14px; } .hero-content { padding: 60px 20px; } .cards-row { flex-wrap: wrap; padding: 40px 20px; gap: 16px; } .card { max-width: 100%; } .form-grid { grid-template-columns: 1fr; padding: 24px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-bottom { flex-direction: column; align-items: flex-start; } body.layout-service-detail .section h2 { font-size: 28px; } body.layout-service-detail .section p, body.layout-service-detail .section li { font-size: 18px; } body.layout-services-index .services-intro h2 { font-size: 34px; } body.layout-services-index .services-intro p { font-size: 18px; } body.layout-service-detail .hero h1, body.layout-services-index .hero h1 { font-size: 36px; } } @media (max-width: 768px) { .logo img { height: 70.4px; } main { font-size: 16px; } .hero { min-height: 420px; } body.layout-service-detail .hero, body.layout-services-index .hero { flex-direction: column; min-height: 0; padding: 64px 20px 56px; } body.layout-service-detail .hero h1, body.layout-services-index .hero h1, body.layout-service-detail .hero p, body.layout-services-index .hero p { width: 100%; } body.layout-service-detail .hero h1, body.layout-services-index .hero h1 { margin-bottom: 14px; } body.layout-service-detail .hero p, body.layout-services-index .hero p { margin-bottom: 0; line-height: 1.55; } .hero-content h1 { font-size: 32px; } .photo-grid, .service-grid, .values-grid { grid-template-columns: 1fr; } .card { padding: 28px 20px; } .footer-grid { grid-template-columns: 1fr; } body.layout-service-detail .section h2 { font-size: 24px; } body.layout-service-detail .hero h1, body.layout-services-index .hero h1 { font-size: 30px; } body.layout-services-index .services-intro h2 { font-size: 30px; } } @media (max-width: 600px) { .cards-row { flex-direction: column; align-items: center; gap: 20px; padding: 32px 16px; } .card { width: 100%; max-width: 380px; } } .mobile-nav-close, .mobile-nav-actions { display: none; } .hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 100; flex-shrink: 0; } .hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: var(--radius-full); transition: transform 0.25s var(--ease-spring), opacity 0.25s var(--ease-spring); } .hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); } .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); } .hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); } @media (max-width: 768px) { .hamburger { display: flex; } .top-header { display: flex !important; justify-content: center; align-items: center; padding: 12px 20px !important; position: relative; } .main-nav, .top-actions { display: none !important; } .hamburger { position: absolute !important; right: 20px; top: 50%; transform: translateY(-50%); } .hamburger.open { z-index: 10000 !important; } .nav-open .top-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 10000 !important; } .main-nav.open { display: block !important; position: fixed !important; top: 0 !important; left: 0 !important; bottom: 0 !important; right: 0 !important; width: 100% !important; height: 100% !important; z-index: 9999 !important; background: #FFFFFF !important; overflow-y: auto; padding: 110px 0 32px; animation: fadeInDrawer 0.3s var(--ease-spring); } @keyframes fadeInDrawer { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .nav-open, .nav-open body { overflow: hidden !important; height: 100% !important; } .main-nav.open > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0 24px; } .main-nav.open > ul > li > a { font-size: 20px !important; padding: 16px 12px !important; border-bottom: 1px solid var(--border-subtle); display: flex !important; align-items: center; justify-content: space-between; } .main-nav.open > ul > li > a::before { display: none !important; } .main-nav.open .has-arrow::after { font-size: 18px !important; color: var(--navy); margin-left: 6px; } .main-nav.open .dropdown-menu { display: none !important; position: static !important; transform: none !important; width: 100% !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; box-shadow: none !important; border: none !important; background: var(--bg-surface) !important; padding: 12px 14px !important; grid-template-columns: 1fr !important; gap: 0 !important; border-radius: var(--radius-md) !important; margin: 8px 0 12px !important; border-left: 3px solid var(--primary) !important; } .main-nav.open .dropdown.active > .dropdown-menu { display: flex !important; flex-direction: column !important; animation: mobileSubmenuFade 0.25s var(--ease-spring); } @keyframes mobileSubmenuFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } } .main-nav.open .dropdown-col { display: flex; flex-direction: column; gap: 0; } .main-nav.open .dropdown-col li a { font-size: 16px !important; padding: 10px 12px !important; color: var(--navy) !important; border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important; display: flex !important; align-items: center; justify-content: flex-start; gap: 8px; font-weight: 600 !important; } .main-nav.open .dropdown-col li a:hover, .main-nav.open .dropdown-col li a:active { background: var(--primary-light) !important; color: var(--primary) !important; } .main-nav.open .dropdown.active > .has-arrow::after { transform: rotate(180deg); color: var(--primary); } .mobile-nav-close { display: none !important; } .mobile-nav-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 28px 24px 0; margin-top: 12px; } .mobile-nav-actions .btn { text-align: center; font-size: 16px !important; padding: 14px 36px !important; width: 100%; } .info-bar { font-size: 13px !important; padding: 8px 12px !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 4px !important; text-align: center !important; } .info-bar > span:first-child { width: 100% !important; text-align: center !important; white-space: normal !important; overflow: visible !important; text-overflow: clip !important; display: block !important; font-size: 13px !important; line-height: 1.35 !important; } .info-phone { display: inline !important; } .info-right { display: block !important; width: 100% !important; text-align: center !important; white-space: normal !important; font-size: 12px !important; line-height: 1.35 !important; color: #CBD5E1 !important; } } @media (max-width: 480px) { .info-bar { padding: 6px 10px !important; } .info-bar > span:first-child { font-size: 12px !important; } .info-right { font-size: 11.5px !important; } body.layout-service-detail .hero, body.layout-services-index .hero { display: block; padding: 52px 16px 44px; } body.layout-service-detail .hero h1, body.layout-services-index .hero h1, .hero-content h1, .hero h1 { font-size: 26px !important; line-height: 1.2; } body.layout-service-detail .hero p, body.layout-services-index .hero p, .hero p { font-size: 16px !important; } .mission-section h2 { font-size: 24px; } .mission-section p { font-size: 17px; } .intro-section { padding: 40px 16px; gap: 24px; } .values-grid { grid-template-columns: 1fr; } .service-grid { grid-template-columns: 1fr; } } #mn-a11y-container { position: fixed; bottom: 24px; right: 96px; left: auto; z-index: 99999; font-family: 'Source Sans 3', sans-serif; } #mn-a11y-trigger { background: var(--navy-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1.5px solid rgba(255, 255, 255, 0.1); color: #FFFFFF; border-radius: var(--radius-full); width: 56px; height: 56px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05); position: relative; } #mn-a11y-trigger::before { content: ""; position: absolute; width: 20px; height: 20px; background-size: contain; background-repeat: no-repeat; background-position: center; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PGxpbmUgeDE9IjE4IiB5MT0iNiIgeDI9IjYiIHkyPSIxOCIvPjxsaW5lIHgxPSI2IiB5MT0iNiIgeDI9IjE4IiB5Mj0iMTgiLz48L3N2Zz4="); opacity: 0; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform: scale(0.5) rotate(-90deg); pointer-events: none; z-index: 2; } #mn-a11y-trigger::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--primary); opacity: 0.4; animation: a11yPulse 2.5s infinite; pointer-events: none; z-index: 1; } @keyframes a11yPulse { 0% { transform: scale(0.95); opacity: 0.5; } 50% { transform: scale(1.08); opacity: 0; } 100% { transform: scale(0.95); opacity: 0; } } #mn-a11y-trigger[aria-expanded="true"] { background: var(--primary-gradient); color: #FFFFFF; border-color: transparent; transform: scale(1.1); box-shadow: 0 10px 25px rgba(217, 30, 54, 0.5); } #mn-a11y-trigger[aria-expanded="true"]::before { opacity: 1 !important; transform: scale(1) rotate(0deg) !important; } #mn-a11y-trigger[aria-expanded="true"]::after { display: none; } @media (hover: hover) { #mn-a11y-trigger:hover { border-color: var(--primary); box-shadow: 0 10px 25px rgba(217, 30, 54, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1); transform: translateY(-2px) scale(1.05); } } #mn-a11y-trigger svg { width: 26px; height: 26px; fill: currentColor; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2; } #mn-a11y-trigger[aria-expanded="true"] svg, #mn-a11y-trigger[aria-expanded="true"] > svg { display: none !important; opacity: 0 !important; visibility: hidden !important; } #mn-a11y-panel { display: none; position: absolute; bottom: 74px; right: 0; left: auto; width: 320px; background: var(--navy-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 3px solid var(--primary); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05); z-index: 100000; } #mn-a11y-panel.active { display: block; animation: mnFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1); } @keyframes mnFadeIn { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } } .mn-a11y-header { color: #FFFFFF; font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; margin: 0 0 18px 0; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 12px; letter-spacing: -0.01em; } .mn-a11y-btn { width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); color: #E2E8F0; padding: 11px 14px; margin-bottom: 10px; border-radius: 10px; cursor: pointer; text-align: left; font-size: 14px; font-weight: 600; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); display: flex; justify-content: flex-start; align-items: center; gap: 12px; box-sizing: border-box; } .mn-a11y-btn::before { content: ""; width: 18px; height: 18px; flex-shrink: 0; background-size: contain; background-repeat: no-repeat; background-position: center; opacity: 0.8; transition: opacity 0.2s ease; } #btn-a11y-text::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 18L8.5 5L13.5 18M4.5 14h8M17 18l2.5-6.5L22 18M17.5 15.5h4'/></svg>"); } #btn-a11y-dyslexia::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1-2.5-2.5V4.5z'/></svg>"); } #btn-a11y-spacing::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 6H3M21 12H3M21 18H3M12 2v20M12 2l-3 3M12 2l3 3M12 22l-3-3M12 22l3 3'/></svg>"); } #btn-a11y-links::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/><path d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/></svg>"); } #btn-a11y-tts::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 5L6 9H2v6h4l5 4V5zM15.54 8.46a5 5 0 0 1 0 7.07M19.07 4.93a10 10 0 0 1 0 14.14'/></svg>"); } #btn-a11y-lang::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10zM2 12h20'/></svg>"); } #btn-a11y-reset::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='red' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8M3 3v5h5'/></svg>"); filter: drop-shadow(0 0 1px rgba(255, 82, 82, 0.4)); } #text-size-indicator { background: rgba(255, 255, 255, 0.08); padding: 2px 10px; border-radius: 9999px; font-size: 11px; font-weight: 700; color: #94A3B8; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.2s ease; margin-left: auto; text-transform: uppercase; letter-spacing: 0.05em; } .active-toggle #text-size-indicator { background: var(--primary); color: #FFFFFF; border-color: transparent; box-shadow: 0 0 8px var(--primary-glow); } .mn-a11y-btn:not(#btn-a11y-text):not(#btn-a11y-reset):not(#btn-a11y-lang)::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); margin-left: auto; transition: all 0.25s ease; flex-shrink: 0; } .mn-a11y-btn.active-toggle:not(#btn-a11y-text):not(#btn-a11y-reset):not(#btn-a11y-lang)::after { background: #10B981; box-shadow: 0 0 8px #10B981, 0 0 2px #10B981; transform: scale(1.15); } @media (hover: hover) { .mn-a11y-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); color: #FFFFFF; transform: translateY(-1px); } .mn-a11y-btn:hover::before { opacity: 1; } .mn-a11y-btn.active-toggle:hover { background: rgba(217, 30, 54, 0.22); border-color: var(--primary); } } .mn-a11y-btn.active-toggle { background: rgba(217, 30, 54, 0.15); border-color: var(--primary); color: #FFFFFF; font-weight: 700; } #btn-a11y-reset { margin-top: 16px !important; background: rgba(255, 82, 82, 0.04) !important; border: 1px solid rgba(255, 82, 82, 0.15) !important; color: #ff6b6b !important; justify-content: center !important; font-weight: 700 !important; } @media (hover: hover) { #btn-a11y-reset:hover { background: #ff5252 !important; border-color: transparent !important; color: #ffffff !important; transform: translateY(-1.5px) !important; box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3) !important; } #btn-a11y-reset:hover::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8M3 3v5h5'/></svg>") !important; filter: none !important; } } body.a11y-dyslexia * { font-family: "Comic Sans MS", "Arial", sans-serif !important; } body.a11y-spacing * { line-height: 1.9 !important; letter-spacing: 0.12em !important; word-spacing: 0.18em !important; } body.a11y-highlight-links a { background-color: #FEF08A !important; color: #0F172A !important; text-decoration: underline !important; text-decoration-thickness: 3px !important; padding: 2px 6px !important; border-radius: 4px !important; } body.a11y-text-1 * { font-size: 110% !important; } body.a11y-text-2 * { font-size: 120% !important; } body.a11y-text-3 * { font-size: 130% !important; } .a11y-reading-highlight { background-color: rgba(217, 30, 54, 0.2) !important; outline: 2px solid var(--primary) !important; border-radius: 4px !important; } @media (max-width: 768px) { #mn-a11y-container { bottom: 12px; right: 84px; left: auto; } #mn-a11y-trigger { width: 44px; height: 44px; opacity: 0.9; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25); } #mn-a11y-trigger[aria-expanded="true"] { opacity: 1; } #mn-a11y-trigger svg { width: 20px; height: 20px; } #mn-a11y-panel { position: fixed; bottom: 68px; left: 12px; right: 12px; width: auto; max-width: none; box-shadow: 0 10px 32px rgba(15, 23, 42, 0.3); } } @keyframes pageFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } } body > header, body > main, body > footer { animation: pageFadeIn 0.5s var(--ease-spring) both; } body::before { content: ""; position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--primary-gradient, linear-gradient(135deg, #E11D48 0%, #BE123C 100%)); z-index: 999999; box-shadow: 0 0 8px var(--primary, #D91E36); pointer-events: none; animation: pageProgressBar 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards; } @keyframes pageProgressBar { 0% { width: 0%; opacity: 1; } 90% { width: 100%; opacity: 1; } 100% { width: 100%; opacity: 0; } } .reveal-element { opacity: 0 !important; transform: translateY(24px); transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring); will-change: opacity, transform; } .reveal-element.revealed { opacity: 1 !important; transform: translateY(0) scale(1) !important; } .reveal-left { transform: translateX(-30px); } .reveal-right { transform: translateX(30px); } .reveal-scale { transform: scale(0.96); } @media (prefers-reduced-motion: reduce) { body > header, body > main, body > footer { animation: none !important; } body::before { display: none !important; } .reveal-element { opacity: 1 !important; transform: none !important; transition: none !important; } }