/* ==================== SERVICES PAGE STYLES ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #E5B649;
    --burgundy: #6B2E2E;
    --dark-burgundy: #4A1F1F;
    --light-gold: #F0CC70;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 46, 46, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    position: relative;
    z-index: 2;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.icon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.icon-line:nth-child(1) { width: 100%; }
.icon-line:nth-child(2) { width: 70%; }
.icon-line:nth-child(3) { width: 85%; }

.nav-brand img {
    max-height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.cta-btn {
    padding: 12px 30px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--burgundy);
}

.cta-btn:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    border-color: var(--dark-burgundy);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.service-page-hero {
    margin-top: 80px;
    height: auto;
    min-height: 400px;
    background: linear-gradient(135deg, #6B2E2E 0%, #4A1F1F 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 182, 73, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.service-page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 182, 73, 0.08), transparent);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.service-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ==================== SERVICES DETAILED ==================== */
.services-detailed {
    padding: 100px 0;
    background: var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
    position: relative;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content {
    position: relative;
}

.service-number {
    font-size: 10rem;
    font-weight: 900;
    color: rgba(107, 46, 46, 0.05);
    position: absolute;
    top: -80px;
    left: -40px;
    line-height: 1;
    z-index: 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-detail:hover .service-icon {
    transform: rotate(5deg) scale(1.05);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 2.8rem;
    color: var(--burgundy);
    /* margin-bottom: 10px; */
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.service-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 20px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item {
    padding: 15px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
    transition: height 0.3s ease;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(107, 46, 46, 0.1);
}

.feature-item i {
    font-size: 1rem;
    color: var(--burgundy);
    /* margin-bottom: 15px; */
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    /* margin-bottom: 10px; */
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    /* line-height: 1.6; */
}

.service-outcomes {
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-outcomes h3 {
    color: var(--burgundy);
    font-size: 1.5rem;
    /* margin-bottom: 10px; */
}

.service-outcomes ul {
    list-style: none;
    padding: 0;
}

.service-outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-outcomes li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 46, 46, 0.3);
}

.service-cta:hover {
    background: var(--gold);
    color: var(--dark-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4);
}

.service-cta-secondary {
    display: inline-flex;
    border: 2px solid var(--burgundy);
    align-items: center;
    gap: 15px;
    padding: 13px 20px;
    background: var(--white) !important;
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(107, 46, 46, 0.3); */
}

.service-cta-secondary:hover {
    background: var(--gold) !important;
    color: var(--dark-burgundy);
    transform: translateY(-3px);
    /* box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4); */
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

.service-detail-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail:hover .service-detail-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.3), rgba(229, 182, 73, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail:hover .image-overlay {
    opacity: 1;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(107, 46, 46, 0.3);
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(107, 46, 46, 0.15);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 182, 73, 0.2), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--gold);
    color: var(--dark-burgundy);
    box-shadow: 0 10px 30px rgba(229, 182, 73, 0.3);
}

.primary-btn:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4);
}

.primary-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--burgundy);
}

/* ==================== PROFESSIONAL FOOTER ==================== */
.footer {
    background: var(--dark-burgundy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, #3a1515 50%, var(--dark-burgundy) 100%);
    z-index: 1;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.footer-logo .icon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-logo .icon-line:nth-child(1) {
    width: 100%;
}

.footer-logo .icon-line:nth-child(2) {
    width: 70%;
}

.footer-logo .icon-line:nth-child(3) {
    width: 85%;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:hover {
    color: var(--dark-burgundy);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    flex: 1;
}

/* Newsletter Section */
.footer-newsletter {
    position: relative;
    z-index: 2;
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.newsletter-form input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 18px 35px;
    background: var(--gold);
    color: var(--dark-burgundy);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 182, 73, 0.3);
}

.newsletter-btn:hover svg {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top:hover {
    background: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 182, 73, 0.3);
}

/* ==================== AOS ANIMATIONS ==================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .service-detail {
        gap: 60px;
    }
    
    .service-number {
        font-size: 8rem;
        top: -60px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        height: 400px;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 120px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-number {
        position: absolute;
        left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}


/* Speaking Engagement Specific Styles */
        .speaking-hero {
            margin-top: 80px;
            min-height: 600px;
            background: linear-gradient(135deg, #6B2E2E 0%, #4A1F1F 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 100px 20px;
        }

        .speaking-hero::before,
        .speaking-hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .speaking-hero::before {
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(229, 182, 73, 0.15), transparent);
        }

        .speaking-hero::after {
            bottom: -20%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(229, 182, 73, 0.1), transparent);
            animation-delay: -10s;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content-left h1 {
            font-size: 4rem;
            color: #FFFFFF;
            margin-bottom: 25px;
            font-weight: 900;
            line-height: 1.1;
        }

        .hero-content-left .highlight {
            background: linear-gradient(120deg, var(--gold), var(--light-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content-left p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 10px;
            font-weight: 900;
        }

        .stat-item p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .hero-image-side {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .hero-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .image-badge h4 {
            color: var(--burgundy);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .image-badge p {
            color: var(--text-light);
            margin: 0;
            font-size: 0.95rem;
        }

        /* Topics Section */
        .topics-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .topic-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--burgundy), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .topic-card:hover::before {
            transform: scaleX(1);
        }

        .topic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
        }

        .topic-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--burgundy), var(--gold));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .topic-card:hover .topic-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .topic-icon i {
            font-size: 2rem;
            color: white;
        }

        .topic-card h3 {
            font-size: 1.6rem;
            color: var(--burgundy);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .topic-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .topic-highlights {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .topic-highlights li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .topic-highlights li i {
            color: var(--gold);
            font-size: 0.9rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: var(--burgundy);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(229, 182, 73, 0.1), transparent);
            border-radius: 50%;
        }

        .testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 60px auto 0;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.9;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--burgundy);
            font-weight: 700;
        }

        .author-info h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-size: 0.95rem;
        }

        /* Event Types Section */
        .event-types-section {
            padding: 100px 0;
            background: white;
        }

        .event-types-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .event-type {
            display: flex;
            gap: 30px;
            padding: 40px;
            background: var(--light-gray);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .event-type:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
        }

        .event-number {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(107, 46, 46, 0.1);
            line-height: 1;
        }

        .event-content h3 {
            font-size: 1.8rem;
            color: var(--burgundy);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .event-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .event-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .feature-tag {
            padding: 8px 15px;
            background: white;
            border: 2px solid var(--gold);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--burgundy);
            font-weight: 600;
        }

        /* Process Section */
        .booking-process {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
        }

        .process-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .process-card {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .process-card::after {
            content: '→';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--gold);
            opacity: 0.5;
        }

        .process-card:last-child::after {
            display: none;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--burgundy), var(--gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
        }

        .process-card h4 {
            font-size: 1.3rem;
            color: var(--burgundy);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .process-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Final CTA */
        .speaking-cta {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
            position: relative;
            overflow: hidden;
        }

        .speaking-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(229, 182, 73, 0.15), transparent);
            border-radius: 50%;
            animation: float 25s infinite ease-in-out;
        }

        .cta-content-speaking {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content-speaking h2 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 25px;
            font-weight: 900;
        }

        .cta-content-speaking p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            line-height: 1.8;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            font-size: 1.1rem;
        }

        .cta-feature i {
            font-size: 1.5rem;
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content-left h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .hero-image-side {
                height: 400px;
            }

            .event-types-grid {
                grid-template-columns: 1fr;
            }

            .process-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-card::after {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .hero-content-left h1 {
                font-size: 2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .topics-grid {
                grid-template-columns: 1fr;
            }

            .process-cards {
                grid-template-columns: 1fr;
            }

            .cta-content-speaking h2 {
                font-size: 2.2rem;
            }

            .cta-features {
                flex-direction: column;
                gap: 20px;
            }
        }


/* ==================== CORPORATE CONSULTING SPECIFIC STYLES ==================== */
/* Add these styles to your existing service.css file */

/* Methodology Section */
.consulting-methodology {
    max-width: 1200px;
    margin: 60px auto 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.methodology-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.methodology-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.methodology-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--burgundy);
    box-shadow: 0 10px 30px rgba(229, 182, 73, 0.4);
}

.methodology-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 20px;
}

.methodology-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.methodology-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.methodology-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.methodology-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.methodology-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding-left: 5px;
}

/* Case Studies Section */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-study-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
    border-color: var(--gold);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-study-icon i {
    font-size: 1.8rem;
    color: white;
}

.case-study-meta h4 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 5px;
    font-weight: 700;
}

.case-study-meta p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.case-study-challenge,
.case-study-solution {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.case-study-challenge strong,
.case-study-solution strong {
    color: var(--burgundy);
    display: block;
    margin-bottom: 8px;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.result-item {
    text-align: center;
}

.result-item h5 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 8px;
    font-weight: 900;
}

.result-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Engagement Models Section */
.engagement-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.engagement-card {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.engagement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(107, 46, 46, 0.2);
    border-color: var(--gold);
}

.engagement-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(107, 46, 46, 0.3);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.engagement-card:hover .engagement-icon {
    transform: rotate(5deg) scale(1.1);
}

.engagement-icon i {
    font-size: 2.5rem;
    color: white;
}

.engagement-card h3 {
    font-size: 1.8rem;
    color: var(--burgundy);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.engagement-description {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 80px;
}

.engagement-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.engagement-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.engagement-features i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.engagement-duration {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    border-radius: 12px;
    font-weight: 600;
    color: var(--burgundy);
    font-size: 0.95rem;
}

/* Responsive Styles for Consulting Page */
@media (max-width: 968px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-study-results {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .engagement-models {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .engagement-badge {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .methodology-card {
        padding: 30px 25px;
    }

    .methodology-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -15px;
        left: 25px;
    }

    .case-study-card {
        padding: 30px 25px;
    }

    .case-study-header {
        flex-direction: column;
        text-align: center;
    }

    .engagement-card {
        padding: 40px 25px;
    }

    .engagement-description {
        min-height: auto;
    }
}


/* ==================== TRAINING & FACILITATION SPECIFIC STYLES ==================== */
/* Add these styles to the end of your existing service.css file */

/* Training Outcomes Grid */
.training-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.outcome-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.outcome-card:hover::before {
    transform: scaleX(1);
}

.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
    border-color: var(--gold);
}

.outcome-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.outcome-card:hover .outcome-icon {
    transform: rotate(-5deg) scale(1.1);
}

.outcome-icon i {
    font-size: 2.5rem;
    color: white;
}

.outcome-card h3 {
    font-size: 1.8rem;
    color: var(--burgundy);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.outcome-card > p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 80px;
}

.outcome-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.metric {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.08), rgba(229, 182, 73, 0.08));
}

.metric h4 {
    font-size: 2.8rem;
    color: var(--burgundy);
    margin-bottom: 8px;
    font-weight: 900;
    line-height: 1;
}

.metric p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.industry-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(107, 46, 46, 0.12);
    border-color: var(--gold);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.1), rgba(229, 182, 73, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    transform: scale(1.1) rotate(5deg);
}

.industry-icon i {
    font-size: 2rem;
    color: var(--burgundy);
    transition: color 0.3s ease;
}

.industry-item:hover .industry-icon i {
    color: white;
}

.industry-item h4 {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 10px;
    font-weight: 700;
}

.industry-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Styles for Training Page */
@media (max-width: 968px) {
    .training-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .outcome-card > p {
        min-height: auto;
    }

    .outcome-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .outcome-card {
        padding: 35px 25px;
    }

    .outcome-card h3 {
        font-size: 1.5rem;
    }

    .metric h4 {
        font-size: 2.2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-item {
        padding: 30px 20px;
    }
}

/* Training-specific animation enhancements */
@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.outcome-icon:hover {
    animation: pulse-soft 2s infinite;
}

/* Training badge styles */
.training-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(107, 46, 46, 0.3);
    z-index: 2;
}

/* Enhanced hover effects for training cards */
.topic-card:hover {
    box-shadow: 0 20px 60px rgba(107, 46, 46, 0.2);
}

/* Training timeline connector (if needed) */
.training-timeline {
    position: relative;
    padding: 60px 0;
}

.training-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
    transform: translateX(-50%);
}

/* Additional spacing for training sections */
.training-section-spacing {
    padding: 80px 0;
}

/* Custom scrollbar for training content areas */
.training-content-area::-webkit-scrollbar {
    width: 8px;
}

.training-content-area::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.training-content-area::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
    border-radius: 10px;
}

.training-content-area::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy);
}


/* ==================== COACHING & STRATEGY SPECIFIC STYLES ==================== */
/* Add these styles to the end of your service.css file */

/* Success Stories Grid */
.coaching-success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.success-story-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.success-story-card:hover::before {
    transform: scaleX(1);
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
    border-color: var(--gold);
}

.success-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.success-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.success-story-card:hover .success-avatar {
    transform: rotate(10deg) scale(1.1);
}

.success-avatar i {
    font-size: 2.5rem;
    color: white;
}

.success-meta {
    flex: 1;
}

.success-meta h4 {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 8px;
    font-weight: 700;
}

.success-meta p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.coaching-duration {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.1), rgba(229, 182, 73, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--burgundy);
}

.success-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 25px 0;
    padding: 0;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.success-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.outcome-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.outcome-badge i {
    color: var(--gold);
    font-size: 1rem;
}

.outcome-badge:hover {
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.1), rgba(229, 182, 73, 0.1));
    transform: translateY(-2px);
}

/* Coaching Packages Grid */
.coaching-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.coaching-package-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.coaching-package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(107, 46, 46, 0.2);
    border-color: var(--gold);
}

.coaching-package-card.featured {
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.03), rgba(229, 182, 73, 0.03));
    border-color: var(--gold);
    transform: scale(1.05);
}

.coaching-package-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(107, 46, 46, 0.3);
    z-index: 2;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 10px;
    font-weight: 800;
}

.package-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.package-price {
    text-align: center;
    margin-bottom: 35px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    border-radius: 15px;
}

.price-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--burgundy);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.package-features i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-ideal {
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.package-ideal strong {
    color: var(--burgundy);
    display: block;
    margin-bottom: 5px;
}

.package-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--burgundy);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 46, 46, 0.3);
}

.package-cta:hover {
    background: var(--gold);
    color: var(--dark-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4);
}

.package-cta i {
    transition: transform 0.3s ease;
}

.package-cta:hover i {
    transform: translateX(5px);
}

.coaching-package-card.featured .package-cta {
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
}

.custom-package-note {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.05), rgba(229, 182, 73, 0.05));
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.custom-package-note i {
    font-size: 1.8rem;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 3px;
}

.custom-package-note p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.custom-package-note a {
    color: var(--burgundy);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.custom-package-note a:hover {
    color: var(--gold);
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.differentiator-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.differentiator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(107, 46, 46, 0.12);
    border-color: var(--gold);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.differentiator-card:hover .diff-icon {
    transform: scale(1.1) rotate(5deg);
}

.diff-icon i {
    font-size: 2.2rem;
    color: white;
}

.differentiator-card h4 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 15px;
    font-weight: 700;
}

.differentiator-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Coaching-specific animations */
@keyframes pulse-coaching {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 182, 73, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(229, 182, 73, 0);
    }
}

.success-avatar {
    animation: pulse-coaching 3s infinite;
}

/* Enhanced hover effects for coaching cards */
.coaching-package-card:hover .package-header h3 {
    color: var(--gold);
}

.success-story-card:hover .success-quote {
    border-left-color: var(--burgundy);
}

/* Responsive Styles for Coaching Page */
@media (max-width: 968px) {
    .coaching-success-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .success-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .success-quote {
        text-align: left;
    }

    .coaching-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .coaching-package-card.featured {
        transform: scale(1);
    }

    .coaching-package-card.featured:hover {
        transform: translateY(-15px);
    }

    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .success-story-card {
        padding: 30px 25px;
    }

    .success-avatar {
        width: 60px;
        height: 60px;
    }

    .success-avatar i {
        font-size: 2rem;
    }

    .success-meta h4 {
        font-size: 1.3rem;
    }

    .success-quote {
        font-size: 1rem;
    }

    .coaching-package-card {
        padding: 40px 30px;
    }

    .package-header h3 {
        font-size: 1.6rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .custom-package-note {
        flex-direction: column;
        text-align: center;
    }

    .custom-package-note i {
        margin: 0 auto;
    }
}

/* Additional micro-interactions */
.package-features li {
    transition: all 0.3s ease;
}

.package-features li:hover {
    transform: translateX(5px);
    color: var(--burgundy);
}

.outcome-badge {
    cursor: default;
}

/* Print styles for coaching proposals */
@media print {
    .coaching-package-card {
        page-break-inside: avoid;
    }
    
    .success-story-card {
        page-break-inside: avoid;
    }
}

/* Accessibility enhancements */
.coaching-package-card:focus-within {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.package-cta:focus {
    outline: 3px solid var(--burgundy);
    outline-offset: 3px;
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if required */
}


/* ==================== CORPORATE HOSTING SPECIFIC STYLES ==================== */
/* Add these styles to the end of your existing service.css file */

/* Excellence Grid */
.hosting-excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.excellence-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(107, 46, 46, 0.12);
    border-color: var(--gold);
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.excellence-card:hover .excellence-icon {
    transform: scale(1.1) rotate(5deg);
}

.excellence-icon i {
    font-size: 2.2rem;
    color: white;
}

.excellence-card h4 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 15px;
    font-weight: 700;
}

.excellence-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Hosting Event Types Grid */
.hosting-event-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.hosting-event-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.hosting-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hosting-event-card:hover::before {
    transform: scaleX(1);
}

.hosting-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
    border-color: var(--gold);
}

.hosting-event-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(107, 46, 46, 0.05);
    line-height: 1;
    z-index: 0;
}

.hosting-event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hosting-event-card:hover .hosting-event-icon {
    transform: rotate(-5deg) scale(1.1);
}

.hosting-event-icon i {
    font-size: 2.5rem;
    color: white;
}

.hosting-event-card h3 {
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.hosting-event-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.hosting-event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hosting-feature-tag {
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.1), rgba(229, 182, 73, 0.1));
    border: 2px solid var(--gold);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--burgundy);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hosting-feature-tag:hover {
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: white;
    transform: translateY(-2px);
}

/* Hosting Testimonials Grid */
.hosting-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.hosting-testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hosting-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hosting-testimonial-card:hover::before {
    transform: scaleX(1);
}

.hosting-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 46, 46, 0.15);
    border-color: var(--gold);
}

.testimonial-quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.3;
}

.hosting-testimonial-card .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.author-avatar-sm {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar-sm i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-author-info h5 {
    font-size: 1.1rem;
    color: var(--burgundy);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Hosting-specific animations */
@keyframes float-hosting {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hosting-event-icon:hover {
    animation: float-hosting 2s ease-in-out infinite;
}

/* Additional hover effects */
.excellence-icon:hover {
    animation: pulse-soft 1.5s infinite;
}

/* Responsive Styles for Hosting Page */
@media (max-width: 968px) {
    .hosting-excellence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .hosting-event-types {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hosting-event-number {
        font-size: 3.5rem;
        top: 20px;
        right: 20px;
    }

    .hosting-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hosting-excellence-grid {
        grid-template-columns: 1fr;
    }

    .excellence-card {
        padding: 30px 20px;
    }

    .hosting-event-card {
        padding: 40px 25px;
    }

    .hosting-event-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .hosting-event-icon {
        width: 70px;
        height: 70px;
    }

    .hosting-event-icon i {
        font-size: 2rem;
    }

    .hosting-event-card h3 {
        font-size: 1.5rem;
    }

    .hosting-testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-quote-icon {
        font-size: 2rem;
    }
}

/* Print styles for hosting proposals */
@media print {
    .hosting-event-card {
        page-break-inside: avoid;
    }
    
    .hosting-testimonial-card {
        page-break-inside: avoid;
    }
}

/* Accessibility enhancements */
.excellence-card:focus-within,
.hosting-event-card:focus-within {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* Loading states */
.excellence-card.loading,
.hosting-event-card.loading,
.hosting-testimonial-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success states for forms */
.hosting-form-success {
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.1), rgba(229, 182, 73, 0.1));
    border-radius: 12px;
    border-left: 5px solid var(--gold);
    margin-top: 20px;
}

.hosting-form-success i {
    color: var(--gold);
    margin-right: 10px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes for hosting page */
.hosting-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(107, 46, 46, 0.3);
    z-index: 2;
}

.hosting-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 60px 0;
}

/* Enhanced micro-interactions */
.hosting-feature-tag,
.hosting-event-features span {
    cursor: default;
    user-select: none;
}

.testimonial-author-info {
    transition: all 0.3s ease;
}

.hosting-testimonial-card:hover .testimonial-author-info {
    transform: translateX(5px);
}

/* Gradient text effects */
.hosting-gradient-text {
    background: linear-gradient(120deg, var(--burgundy), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card stacking effect on mobile */
@media (max-width: 640px) {
    .hosting-event-card:not(:last-child) {
        margin-bottom: 20px;
    }
}

/* Focus states for better accessibility */
.excellence-icon:focus,
.hosting-event-icon:focus {
    outline: 3px solid var(--burgundy);
    outline-offset: 5px;
}

/* Skeleton loading (if needed) */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Tooltip styles (if needed for hosting features) */
.hosting-tooltip {
    position: relative;
}

.hosting-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--burgundy);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 8px;
}

.hosting-tooltip:hover::after {
    opacity: 1;
}

/* Enhanced card depth on hover */
.excellence-card:hover,
.hosting-event-card:hover,
.hosting-testimonial-card:hover {
    box-shadow: 
        0 20px 40px rgba(107, 46, 46, 0.1),
        0 10px 20px rgba(107, 46, 46, 0.08),
        0 5px 10px rgba(107, 46, 46, 0.06);
}

/* Responsive font sizing for better mobile experience */
@media (max-width: 480px) {
    .excellence-card h4 {
        font-size: 1.2rem;
    }
    
    .excellence-card p {
        font-size: 0.9rem;
    }
    
    .hosting-event-card h3 {
        font-size: 1.3rem;
    }
    
    .hosting-event-card p {
        font-size: 0.95rem;
    }
}