/* ===================================
   ROOT VARIABLES (Matching Theme)
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --soft-beige: #EDE8DC;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   SERVICES HERO SECTION
   =================================== */
.services-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg,
            var(--primary-navy) 0%,
            var(--primary-teal) 40%,
            var(--accent-emerald) 70%,
            var(--accent-mint) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: 1s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 3s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ===================================
   SECTION BADGE (Global)
   =================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-highlight {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.1), rgba(87, 197, 182, 0.1));
    border-radius: 20px;
    border-left: 5px solid var(--accent-emerald);
    margin-top: 30px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    padding: 25px;
    background: var(--light-cream);
    border-radius: 18px;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-mint);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-emerald));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.philosophy-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.philosophy-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 25px;
}

.philosophy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.philosophy-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.package-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.package-header {
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.package-header.finishing-touches {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
}

.package-header.competitive-boost {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.package-header.invest-yourself {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
}

.package-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
}

.package-description {
    padding: 25px 30px;
    background: var(--light-cream);
}

.package-description p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.package-price {
    padding: 30px;
    text-align: center;
    background: var(--white);
    border-top: 2px solid var(--light-cream);
    border-bottom: 2px solid var(--light-cream);
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-emerald);
    line-height: 1;
    margin-bottom: 5px;
}

.price-unit {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.package-features {
    padding: 30px;
}

.feature-category {
    margin-bottom: 25px;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.feature-category h4 {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-category h4 i {
    color: var(--accent-emerald);
    font-size: 16px;
}

.feature-category ul {
    list-style: none;
}

.feature-category ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-category ul li i {
    color: var(--accent-emerald);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 30px 30px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.package-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(21, 152, 149, 0.4);
}

/* Comparison Image */
.comparison-image {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--light-cream);
    border-radius: 25px;
}

.comparison-image h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 30px;
    font-weight: 700;
}

.comparison-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.comparison-note {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Continue in next part due to character limit... */

/* ===================================
   SERVICES DETAIL SECTION (Accordion)
   =================================== */
.services-detail-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: var(--light-cream);
}

.accordion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.4rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.accordion-arrow {
    font-size: 20px;
    color: var(--accent-emerald);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 0 30px 30px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    padding: 20px;
    background: var(--light-cream);
    border-radius: 15px;
    border-left: 4px solid var(--accent-emerald);
}

.detail-item h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item h4 i {
    color: var(--accent-emerald);
    font-size: 18px;
}

.detail-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.detail-item ul {
    list-style: none;
    margin-top: 10px;
}

.detail-item ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

.detail-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

/* ===================================
   WHY TGN SECTION
   =================================== */
.why-tgn-section {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 35px 30px;
    background: var(--light-cream);
    border-radius: 25px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: var(--accent-emerald);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border-top: 5px solid var(--accent-emerald);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 18px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-cream);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--primary-navy);
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal), var(--accent-emerald));
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.cta-particles .particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation: float 10s infinite;
}

.cta-particles .particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation: float 12s infinite;
}

.cta-particles .particle:nth-child(3) {
    left: 50%;
    top: 80%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-gold);
    margin: 0 auto 30px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .intro-content h2,
    .philosophy-content h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .package-header {
        padding: 30px 20px 20px;
    }

    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .package-header h3 {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .package-features {
        padding: 20px;
    }

    .feature-category h4 {
        font-size: 0.95rem;
    }

    .comparison-image {
        padding: 20px;
    }

    .comparison-image h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .hero-particles,
    .hero-overlay,
    .cta-particles {
        display: none;
    }

    body {
        background: white;
    }

    .package-card {
        page-break-inside: avoid;
    }
}

/* ===================================
   ADDITIONAL STYLES FOR SERVICES UPDATE
   Add these to your existing services.css file
   =================================== */

/* Additional Note Styling for Package Cards */
.additional-note {
    margin-top: 20px;
    padding: 12px 15px;
    background: rgba(21, 152, 149, 0.1);
    border-left: 3px solid var(--accent-emerald);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
}

/* Enhanced Package Card Animations */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

/* Enhanced Feature Category Styling */
.feature-category {
    background: var(--light-cream);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.feature-category:hover {
    background: rgba(21, 152, 149, 0.05);
    transform: translateX(5px);
}

/* Price Amount Emphasis */
.price-amount {
    position: relative;
    display: inline-block;
}

.price-amount::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-emerald), transparent);
    border-radius: 2px;
}

/* Package Button Enhanced States */
.package-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.package-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Service Details Enhanced */
.detail-item {
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 2px;
}

/* Accordion Enhanced Animation */
.accordion-item {
    position: relative;
}

.accordion-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-mint));
    transition: width 0.5s ease;
}

.accordion-item.active::after {
    width: 100%;
}

/* Mobile Optimization for Additional Notes */
@media (max-width: 768px) {
    .additional-note {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .feature-category {
        padding: 12px;
    }
}

/* Print Optimization */
@media print {
    .additional-note {
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
    
    .package-btn::before,
    .accordion-item::after,
    .package-card::before {
        display: none;
    }
}

/* ===================================
   PROCESS TIMELINE
   =================================== */
.mentorship-process {
    margin-bottom: 80px!important;
    position: relative!important;
    z-index: 2!important;
}

.process-title {
    font-family: 'Playfair Display', serif!important;
    font-size: 36px!important;
    font-weight: 700!important;
    color: var(--text-dark)!important;
    text-align: center!important;
    margin-bottom: 50px!important;
}

.process-timeline {
    max-width: 900px!important;
    margin: 0 auto!important;
    display: flex!important;
    flex-direction: column!important;
    gap: 0!important;
}

.timeline-item {
    display: flex!important;
    align-items: center!important;
    gap: 25px!important;
    position: relative!important;
}

.timeline-number {
    width: 60px!important;
    height: 60px!important;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint))!important;
    border-radius: 50%!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    font-size: 24px!important;
    font-weight: 700!important;
    color: var(--white)!important;
    flex-shrink: 0!important;
    box-shadow: 0 6px 20px rgba(21, 152, 149, 0.3)!important;
    position: relative!important;
    z-index: 2!important;
}

.timeline-content {
    flex: 1!important;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-mint);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
}

.timeline-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.timeline-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-emerald), var(--accent-mint));
    margin-left: 28px;
    border-radius: 2px;
}

ul {
    padding-left: 20px!important;
}