/* Mindscope Services Ltd - Main Stylesheet */

/* CSS Variables for Brand Colors */
:root {
    /* Primary Brand Colors */
    --primary-burgundy: #4B002E;
    --primary-orange: #E7682E;
    --primary-gold: #F4C52B;
    --primary-white: #FFFFFF;
    
    /* Secondary Corporate Colors */
    --navy-blue: #1e3a8a;
    --dark-navy: #1e40af;
    --soft-grey: #f8fafc;
    --medium-grey: #64748b;
    --dark-grey: #334155;
    --light-grey: #e2e8f0;
    
    /* Text Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-grey);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 0.5rem 0;
    border: 1px solid var(--light-grey);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--soft-grey);
    color: var(--primary-orange);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-burgundy);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            to right,
            var(--primary-burgundy) 0%,
            var(--primary-burgundy) 40%,
            rgba(75, 0, 46, 0.6) 50%,
            rgba(75, 0, 46, 0.3) 65%,
            rgba(75, 0, 46, 0.1) 80%,
            transparent 90%
        ),
        linear-gradient(135deg, var(--primary-burgundy) 0%, var(--navy-blue) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background-image: url('../assets/hero.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 0, 46, 0.2);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 8rem 0;
}

.hero-content .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-content .content-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 2rem;
}

.hero-content .content-image {
    text-align: center;
    padding-left: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Logo in Grid Layout - Matching About Teaser Image Size */
.hero-logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 3px solid white;
    border-radius: 12px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(244, 197, 43, 0.4),
        0 0 40px rgba(244, 197, 43, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(244, 197, 43, 0.6),
        0 0 60px rgba(244, 197, 43, 0.3);
}

/* Responsive Hero Layout */
@media (max-width: 768px) {
    .hero-background::before {
        display: none;
    }
    
    .hero-background {
        background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--navy-blue) 100%);
    }
    
    .hero-content {
        padding: 6rem 0;
    }
    
    .hero-content .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .hero-content .content-text {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-content .content-image {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Service Hero Section */
.service-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-burgundy) 0%, 
        rgba(75, 0, 46, 0.9) 30%,
        rgba(75, 0, 46, 0.8) 60%,
        var(--navy-blue) 100%);
}

.service-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(75, 0, 46, 0.85) 0%, 
        rgba(75, 0, 46, 0.7) 50%,
        rgba(30, 58, 138, 0.8) 100%);
    z-index: -1;
}

.service-hero .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-badge i {
    font-size: 1.125rem;
    color: var(--primary-gold);
}

.service-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, white 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
}

.service-hero .hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-item::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Service Hero */
@media (max-width: 768px) {
    .service-hero {
        min-height: 70vh;
    }
    
    .service-hero .hero-content {
        padding: 6rem 0 4rem;
    }
    
    .service-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-hero .hero-content {
        padding: 4rem 0 3rem;
    }
    
    .service-hero .hero-title {
        font-size: 2rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .service-hero .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Wellness Specific Sections */

/* Service Overview Section */
.service-overview {
    padding: 6rem 0;
    background: var(--section-bg);
}

.wellness-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 46, 0.1);
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-burgundy);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: white;
}

.pillar-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-burgundy);
}

.pillar-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.wellness-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-image:hover {
    transform: scale(1.05);
}

/* Programmes Section */
.programmes-section {
    padding: 6rem 0;
    background: white;
}

.programmes-tabs {
    margin-top: 3rem;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    transition: left 0.3s ease;
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover,
.tab-btn.active {
    color: white;
    border-color: var(--primary-burgundy);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.programme-detail {
    background: var(--section-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.programme-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(75, 0, 46, 0.1);
}

.programme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.programme-icon i {
    font-size: 2rem;
    color: white;
}

.programme-title h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
}

.programme-title p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.programme-features h4,
.programme-benefits h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-burgundy);
}

.programme-features ul {
    list-style: none;
    padding: 0;
}

.programme-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(75, 0, 46, 0.1);
}

.programme-features li:last-child {
    border-bottom: none;
}

.programme-features li i {
    color: var(--primary-orange);
    font-size: 1.125rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.benefit-card span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--section-bg);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.choose-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 46, 0.1);
    position: relative;
    overflow: hidden;
}

.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.choose-item:hover::before {
    transform: scaleX(1);
}

.choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.choose-item:hover .choose-icon {
    transform: scale(1.1);
}

.choose-icon i {
    font-size: 2rem;
    color: white;
}

.choose-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
}

.choose-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        var(--primary-burgundy) 0%, 
        rgba(75, 0, 46, 0.9) 30%,
        rgba(75, 0, 46, 0.8) 70%,
        var(--navy-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/hero.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-badge i {
    color: var(--primary-gold);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.option-icon i {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
}

.cta-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-section .testimonial-card {
    background: var(--section-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 46, 0.1);
    position: relative;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 20px 20px 0 0;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1.25rem;
    color: white;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.25rem;
    color: white;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-burgundy);
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.rating i {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* Responsive Wellness Styles */
@media (max-width: 768px) {
    .wellness-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .wellness-image-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .tab-navigation {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .programme-detail {
        padding: 2rem;
    }
    
    .programme-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .programme-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .choose-item {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-overview,
    .programmes-section,
    .why-choose-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .programme-title h3 {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-burgundy);
    transform: translateY(-2px);
}

.btn-urgent {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    animation: pulse 2s infinite;
}

.btn-urgent:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(220, 38, 38, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3); }
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
    animation: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Teaser */
.about-teaser {
    background: var(--soft-grey);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--primary-orange);
    font-size: 1.125rem;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Services Overview */
.services-overview {
    background: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-grey);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.card-title {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.card-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-link:hover {
    gap: 0.75rem;
}

/* Heartbeat Card */
.heartbeat-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--navy-blue) 100%);
    overflow: hidden;
}

.heartbeat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(244, 197, 43, 0.1) 0%, transparent 70%);
    animation: pulse-bg 833ms infinite ease-in-out;
}

.heartbeat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.golden-heart {
    font-size: 6rem;
    color: var(--primary-gold);
    animation: heartbeat 833ms infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(244, 197, 43, 0.6));
}

.heartbeat-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.beat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-gold);
    animation: counter 833ms infinite ease-in-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.beat-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-top: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Heartbeat Animation - 72 BPM (833ms per beat) */
@keyframes heartbeat {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(244, 197, 43, 0.6));
    }
    14% { 
        transform: scale(1.2);
        filter: drop-shadow(0 0 30px rgba(244, 197, 43, 0.8));
    }
    28% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(244, 197, 43, 0.6));
    }
    42% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px rgba(244, 197, 43, 0.7));
    }
    70% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(244, 197, 43, 0.6));
    }
    100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(244, 197, 43, 0.6));
    }
}

@keyframes counter {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    14% { 
        opacity: 1;
        transform: scale(1.1);
    }
    28% { 
        opacity: 1;
        transform: scale(1);
    }
    42% { 
        opacity: 1;
        transform: scale(1.05);
    }
    70% { 
        opacity: 0.8;
        transform: scale(1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-bg {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    14% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
    28% { 
        opacity: 0.3;
        transform: scale(1);
    }
    42% { 
        opacity: 0.5;
        transform: scale(1.05);
    }
    70% { 
        opacity: 0.2;
        transform: scale(1);
    }
    100% { 
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Hide heartbeat card on mobile */
@media (max-width: 768px) {
    .heartbeat-card {
        display: none;
    }
}

/* Testimonials */
.testimonials {
    background: var(--soft-grey);
    padding: 5rem 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
    border: 2px solid var(--light-grey);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-burgundy);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-grey);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-orange);
}

/* Client Logos */
.client-logos {
    background: white;
    padding: 3rem 0;
}

.logos-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 3rem;
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-item:hover {
    filter: grayscale(0%);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Quick Contact CTA */
.quick-contact {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--navy-blue));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
/* Enhanced Footer Styles */
.footer {
    background: var(--primary-burgundy);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, rgba(75, 0, 46, 0.95) 50%, var(--primary-orange) 100%);
    opacity: 0.1;
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

/* Footer CTA Section */
.footer-top {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    padding: 3rem 0;
    text-align: center;
}

.footer-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-cta-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-burgundy);
}

/* Main Footer */
.footer-main {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Footer About Section */
.footer-about {
    max-width: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-stats .stat-item {
    text-align: left;
}

.footer-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Footer Sections */
.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary-orange);
}

/* Footer Links - Enhanced Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid transparent;
    backdrop-filter: blur(10px);
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(244, 197, 43, 0.2);
}

.footer-links a i {
    color: var(--primary-orange);
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-links a span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.footer-links a strong {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-links a small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Quick Links - Simplified Style */
.footer-section .quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

/* Simple Footer Links */
.footer-links.simple-links {
    display: block;
    gap: 0;
}

.footer-links.simple-links li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.footer-links.simple-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer-links.simple-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    font-size: 0.95rem;
}

.footer-links.simple-links a:hover {
    color: var(--primary-gold);
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    text-decoration: underline;
}

/* Contact List Styling */
.footer-links.contact-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links.contact-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer-links.contact-list strong {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-links.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links.contact-list a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.footer-links.contact-list small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

.footer-section .quick-links a {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section .quick-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-orange);
    transform: translateX(3px);
}

/* Contact Info - Enhanced Cards */
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(231, 104, 46, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: white;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(244, 197, 43, 0.5);
}

.contact-details small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid rgba(244, 197, 43, 0.2);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(75, 0, 46, 0.3), rgba(231, 104, 46, 0.1));
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-orange), var(--primary-burgundy));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-signup:hover::before {
    opacity: 0.3;
}

.newsletter-signup:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.newsletter-signup h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-signup h5::before {
    content: '📧';
    font-size: 1.1rem;
    -webkit-text-fill-color: initial;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.input-group .form-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(244, 197, 43, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group .form-input:focus {
    border-color: var(--primary-gold);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(244, 197, 43, 0.2);
    transform: translateY(-2px);
}

.input-group .btn {
    padding: 1rem 1.5rem;
    min-width: auto;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.input-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 197, 43, 0.4);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
}

.input-group .btn::after {
    content: '✉️';
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(75, 0, 46, 0.3));
    backdrop-filter: blur(10px);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(244, 197, 43, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-tagline {
    color: var(--primary-gold) !important;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 10px rgba(244, 197, 43, 0.3);
}

.footer-certificates {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.certificate-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-payment span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-gold);
}

/* Enhanced Mobile Responsive Design */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-burgundy);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white !important;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 0.75rem 3rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Extra Small Screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
}

/* Form Responsive Improvements */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
}

/* SweetAlert2 Custom Styles */
.swal-popup {
    font-family: 'Inter', sans-serif !important;
}

.swal-title {
    color: var(--primary-burgundy) !important;
}

.swal2-confirm {
    background: var(--primary-burgundy) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.75rem 2rem !important;
}

.swal2-confirm:hover {
    background: #3a0022 !important;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Touch Improvements for Mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .card-link,
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-controls button {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .cta-buttons,
    .scroll-indicator,
    .testimonial-controls {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background,
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: black;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-burgundy);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .btn-outline {
        border-width: 2px;
    }
    
    .card {
        border: 2px solid var(--primary-burgundy);
    }
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-content {
        padding: 2rem 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .nav-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--navy-blue) 100%);
    z-index: -2;
}

.header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 0, 46, 0.7);
    z-index: -1;
}

.header-content {
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Company Story */
.company-story {
    padding: 5rem 0;
    background: var(--soft-grey);
}

/* Mission, Vision, Values */
.mvv-section {
    padding: 5rem 0;
    background: white;
}

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

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mvv-card.full-width {
    grid-column: 1 / -1;
    text-align: left;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mvv-card.full-width .mvv-icon {
    margin: 0 auto 2rem;
}

.mvv-card h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.value-item h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Leadership Team */
.leadership-team {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 0, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-image:hover img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Social Impact */
.social-impact {
    padding: 5rem 0;
    background: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
}

.impact-initiatives {
    margin-top: 2rem;
}

.initiative {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.initiative i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.initiative h4 {
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.initiative p {
    color: var(--text-secondary);
    margin: 0;
}

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

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.feature-item h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.feature-item p {
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--navy-blue));
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    width: 100%;
}

/* Additional Responsive Updates */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .member-stats {
        justify-content: space-around;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        height: 50vh;
    }
}

/* Service Page Styles */

/* Service Introduction */
.service-intro {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.service-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-orange);
    font-size: 1.125rem;
}

/* Service Grid */
.our-services {
    padding: 5rem 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-grey);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
}

/* Why Choose Section */
.why-choose-catering {
    padding: 5rem 0;
    background: var(--soft-grey);
}

/* Gallery */
.catering-gallery {
    padding: 5rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    margin: 0;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* Service Testimonials */
.service-testimonials {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-grey);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.testimonial-author h4 {
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Service CTA */
.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--navy-blue));
    color: white;
    text-align: center;
}

.service-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light-grey);
}

.modal-header h3 {
    color: var(--primary-burgundy);
    margin: 0;
}

.close {
    font-size: 2rem;
    color: var(--medium-grey);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-orange);
}

.modal-body {
    padding: 2rem;
}

/* Quote Form */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(231, 104, 46, 0.1);
}

.form-input.error {
    border-color: #e53e3e;
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--medium-grey);
    pointer-events: none;
    transition: var(--transition);
    background: white;
    padding: 0 0.25rem;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-input:valid + .form-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--primary-orange);
}

.field-error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-orange);
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-orange);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-grey);
}

.comparison-table th {
    background: var(--soft-grey);
    color: var(--primary-burgundy);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-primary);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-orange);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #22c55e;
}

.notification-error {
    border-left-color: #e53e3e;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.notification-message {
    color: var(--text-primary);
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-grey);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--primary-orange);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .lightbox-controls {
        padding: 0 0.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-highlights {
        margin-top: 1.5rem;
    }
    
    .highlight-item {
        margin-bottom: 0.5rem;
    }
}

/* Contact Page Styles */

/* Contact Information Section */
.contact-info-section {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-burgundy);
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #1da851;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-container h2,
.contact-map-container h2 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.contact-form-container p,
.contact-map-container p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-input {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-grey);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Map Section */
.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.contact-map {
    width: 100%;
    height: 400px;
    border: none;
    transition: opacity 0.3s ease;
}

.location-details {
    background: var(--soft-grey);
    padding: 2rem;
    border-radius: 12px;
}

.location-details h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
}

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

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-primary);
}

.time {
    color: var(--text-secondary);
}

/* Quick Actions */
.quick-actions {
    padding: 5rem 0;
    background: var(--soft-grey);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.action-card h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.action-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--light-grey);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--soft-grey);
}

.faq-question h3 {
    color: var(--primary-burgundy);
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    background: var(--primary-orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--primary-burgundy);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--soft-grey);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Schedule Modal Additional Styles */
.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form validation states */
.form-input.valid {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input.valid + .form-label {
    color: #22c55e;
}

/* Contact WhatsApp button specific styles */
.contact-whatsapp {
    background: #25D366;
    bottom: 2rem;
    right: 2rem;
}

.contact-whatsapp:hover {
    background: #1da851;
}

/* Loading states */
@keyframes buttonLoading {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.btn.loading {
    animation: buttonLoading 1.5s ease-in-out infinite;
    cursor: not-allowed;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card,
    .action-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon,
    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .hours-grid {
        gap: 0.5rem;
    }
    
    .location-details {
        padding: 1.5rem;
    }
}

/* Portfolio Styles */
.portfolio-stats {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    padding: 4rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.portfolio-section {
    padding: 6rem 0;
    background: var(--soft-grey);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-burgundy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 0, 46, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(75, 0, 46, 0.9), rgba(231, 104, 46, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.portfolio-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-actions {
    margin-top: 1rem;
}

.view-btn {
    background: var(--primary-gold);
    color: var(--primary-burgundy);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: white;
    transform: scale(1.1);
}

.portfolio-testimonials {
    background: white;
    padding: 6rem 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    padding: 2rem;
}

.client-logo {
    margin-bottom: 2rem;
}

.client-logo img {
    height: 60px;
    opacity: 0.7;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    background: var(--primary-burgundy);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-burgundy);
    transform: scale(1.2);
}

.portfolio-cta {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Portfolio Modal */
.portfolio-modal {
    z-index: 2000;
}

.portfolio-modal-content {
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2% auto;
}

.portfolio-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    z-index: 1;
    color: var(--primary-burgundy);
}

.portfolio-modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light-grey);
}

.portfolio-modal-header h2 {
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.project-category {
    color: var(--primary-orange);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.portfolio-modal-gallery {
    padding: 2rem;
}

.main-image {
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-gallery img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumbnail-gallery img:hover {
    opacity: 1;
}

.portfolio-modal-details {
    padding: 0 2rem 2rem;
}

.portfolio-modal-details h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.3rem;
}

.portfolio-modal-details h3:first-child {
    margin-top: 0;
}

.project-description p {
    line-height: 1.6;
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.info-item strong {
    color: var(--primary-burgundy);
}

.project-results ul {
    list-style: none;
    padding: 0;
}

.project-results li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

.project-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.project-testimonial {
    background: var(--soft-grey);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-burgundy);
    margin-top: 2rem;
}

.project-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-testimonial cite {
    color: var(--primary-burgundy);
    font-weight: 500;
}

.portfolio-modal-actions {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--light-grey);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Portfolio Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .portfolio-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .portfolio-modal-details {
        padding: 0 1rem 1rem;
    }
    
    .portfolio-modal-gallery {
        padding: 1rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-modal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
}

/* Process Section Styles */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-grey) 0%, #f0f5ff 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.03"/><circle cx="80" cy="40" r="1" fill="%23000" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--primary-gold));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(231, 104, 46, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content .timeline-features {
    text-align: left;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(231, 104, 46, 0.4);
    border: 4px solid white;
}

.timeline-number span {
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(75, 0, 46, 0.3);
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Section Responsive */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-number {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        max-width: calc(100% - 100px);
        margin-left: 100px;
        margin-right: 0;
    }
    
    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon i {
        font-size: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 4rem 0;
    }
    
    .timeline-content {
        padding: 2rem;
        margin-left: 80px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* Professional Slideshow Styles */
.professional-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--soft-grey);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide.active .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slideshow-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slideshow-arrow i {
    font-size: 1.2rem;
    color: var(--primary-burgundy);
}

.slideshow-arrow.prev {
    left: 1rem;
}

.slideshow-arrow.next {
    right: 1rem;
}

.slideshow-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.nav-dot.active {
    background: var(--primary-burgundy);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: white;
    transform: scale(1.1);
}

/* Loading State */
.slideshow-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-secondary);
}

.slideshow-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Slideshow Responsive Design */
@media (max-width: 768px) {
    .professional-slideshow {
        height: 300px;
    }
    
    .slide-overlay {
        padding: 1.5rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.25rem;
    }
    
    .slide-overlay p {
        font-size: 0.9rem;
    }
    
    .slideshow-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slideshow-arrow i {
        font-size: 1rem;
    }
    
    .slideshow-arrow.prev {
        left: 0.5rem;
    }
    
    .slideshow-arrow.next {
        right: 0.5rem;
    }
    
    .nav-dot {
        width: 12px;
        height: 12px;
    }
    
    .slideshow-nav {
        bottom: 0.5rem;
        gap: 0.375rem;
    }
}

@media (max-width: 480px) {
    .professional-slideshow {
        height: 250px;
    }
    
    .slide-overlay {
        padding: 1rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.125rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .slideshow-nav {
        bottom: 0.375rem;
        gap: 0.25rem;
    }
    
    .slideshow-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slideshow-arrow i {
        font-size: 0.875rem;
    }
    
    .slide-overlay p {
        font-size: 0.875rem;
    }
}

