/* 
 * ARSS Corporation Website Styles
 * Primary accent color: #8E261F
 */

:root {
    --primary-color: #8E261F;
    --primary-light: #aa4a44;
    --primary-dark: #721c18;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

/* Global Styles */
body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(142, 38, 31, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--secondary-color);
}

section {
    padding: 80px 0;
}

.required {
    color: var(--primary-color);
}

/* Header */
header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-text {
    color: var(--primary-color);
    font-family: 'Didot', 'Didot LT STD', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 2.2rem;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    position: relative;
}

.nav-link.active::after, 
.nav-link:hover::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 120px 0;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="20" fill="%23ffffff" fill-opacity="0.05"/><circle cx="70" cy="70" r="30" fill="%23ffffff" fill-opacity="0.05"/></svg>');
    background-size: 600px 600px;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    padding: 10px;
}

.main-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.sub-headline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    animation: fadeInRight 1s ease-out 0.4s;
    animation-fill-mode: both;
    position: relative;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 38, 31, 0.2) 0%, rgba(142, 38, 31, 0) 50%);
    z-index: 2;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

/* Services Overview Section */
.services-overview-section {
    background-color: #fff;
}

.service-card {
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.5s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-link:hover::after {
    height: 2px;
}

/* Case Studies Section */
.case-studies-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 38, 31, 0.05) 0%, rgba(142, 38, 31, 0.02) 100%);
    z-index: 0;
}

.case-studies-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 38, 31, 0.05) 0%, rgba(142, 38, 31, 0.02) 100%);
    z-index: 0;
}

.case-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.case-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.case-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.case-card:hover .case-logo {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* News Section */
.news-section {
    background-color: #fff;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.news-date {
    color: var(--gray-color);
    margin-right: 1rem;
    min-width: 120px;
}

.news-tag {
    background-color: var(--primary-light);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 1rem;
    min-width: 100px;
    text-align: center;
}

.news-title {
    font-weight: 500;
    flex: 1;
}

/* Contact CTA Section */
.contact-cta-section {
    background-color: var(--light-color);
}

.cta-box {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo {
    color: #fff;
    font-family: 'Didot', 'Didot LT STD', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

footer h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Title Section */
.page-title-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Services Detail Page */
.service-detail-section {
    padding: 80px 0;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.service-description p {
    margin-bottom: 1.5rem;
}

.service-icon.large {
    font-size: 3rem;
}

.service-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Flow Section */
.flow-section {
    background-color: #fff;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background-color: var(--light-gray);
}

.flow-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.flow-step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.flow-step-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.flow-step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Vision & Mission Section */
.vision-section {
    background-color: #fff;
}

.vision-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.vision-text {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    color: var(--primary-color);
}

.mission-list {
    margin-top: 1rem;
}

.mission-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.mission-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.mission-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    background-color: var(--light-color);
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* Founders Section */
.founders-section {
    background-color: #fff;
}

.founder-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.founder-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.founder-card p {
    margin-bottom: 1rem;
}

.specialist-areas {
    margin-top: 1.5rem;
}

.specialist-areas h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.specialist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialist-tags span {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.founders-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
}

/* Company Overview Section */
.company-overview-section {
    background-color: var(--light-color);
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--light-gray);
    padding: 15px 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    width: 150px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content ul {
    margin: 0;
    padding-left: 20px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #fff;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 500;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 4px;
}

.faq-section {
    margin-top: 3rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.contact-info-section {
    padding: 60px 0;
}

.contact-info-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-info-card p {
    margin: 0;
}

/* ====== SECTION HEADERS ====== */
.section-header {
    margin-bottom: 2rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-divider {
    margin: 1.5rem auto;
    width: 100%;
    max-width: 100px;
    position: relative;
    height: 1px;
}

.section-divider span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ====== HERO STATS ====== */
.hero-stats {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ====== HERO BUTTONS ====== */
.hero-buttons {
    margin-top: 2rem;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(142, 38, 31, 0.2);
}

/* ====== SHAPE DIVIDER ====== */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* ====== HIGHLIGHTS ====== */
.highlight {
    color: #fff;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* ====== CARD LINKS ====== */
.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.card-link:hover {
    color: var(--primary-dark);
}

.card-link:hover i {
    transform: translateX(3px);
}

/* ====== CASE TAG ====== */
.case-tag {
    display: inline-block;
    background-color: rgba(142, 38, 31, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ====== BACKGROUND CIRCLES ====== */
.bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle-1, .circle-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 38, 31, 0.05) 0%, rgba(142, 38, 31, 0.02) 100%);
}

.circle-1 {
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
}

.circle-2 {
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
}

/* ====== NEWS SECTION REDESIGN ====== */
.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 10px;
    width: 80px;
    text-align: center;
    margin-right: 15px;
}

.news-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.news-date .month, .news-date .year {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.news-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.news-link {
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.news-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateX(3px);
}

/* ====== CTA SECTION REDESIGN ====== */
.cta-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.cta-badges {
    margin-top: 2rem;
}

.cta-badge {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 50px;
    padding: 8px 15px;
    margin: 0 5px;
}

.cta-badge i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.cta-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ====== HOVER EFFECTS ====== */
.btn-lg {
    padding: 12px 34px;
    font-size: 1.1rem;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-5deg) translateX(50px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* ====== SERVICE TABLE ====== */
.service-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 0.95rem;
}

.service-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.service-table th, 
.service-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.service-table th {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-column {
    text-align: left;
    width: 30%;
}

.plan-column {
    width: 23.33%;
}

.feature-name {
    font-weight: 500;
    text-align: left;
    background-color: rgba(248, 249, 250, 0.7);
}

.plan-value {
    text-align: center;
}

.service-table tbody tr:hover {
    background-color: rgba(248, 249, 250, 0.4);
}

.service-table .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Highlight premium plan */
.service-table th:last-child,
.service-table td:last-child {
    background-color: rgba(142, 38, 31, 0.03);
    border-left: 2px solid var(--primary-light);
}

.service-table thead th:last-child {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-table {
        font-size: 0.85rem;
    }
    
    .service-table th, 
    .service-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
}
