/* ============================================
   Chris & Geo Corporate Website Styles - UPDATED GREEN THEME
   GOLD REPLACED WITH GRAY HIGHLIGHTS
   ============================================ */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PRIMARY COLORS - GREEN THEME */
    --primary-green: #2E8B57;      /* Seagreen - Main brand color */
    --primary-dark: #1B5E20;       /* Dark green for hover states */
    --primary-light: #4CAF50;      /* Light green for backgrounds */
    --primary-very-light: #E8F5E9; /* Very light green */
    
    /* SECONDARY COLORS - GRAY THEME */
    --secondary-gray: #6C757D;     /* Medium gray for accents (was gold) */
    --secondary-dark: #495057;     /* Dark gray for hover */
    
    /* ACCENT COLORS */
    --accent-teal: #1A7F7F;        /* Teal for special elements */
    --accent-orange: #FF9800;      /* Orange for CTAs */
    
    /* NEUTRAL COLORS */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* TEXT COLORS */
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --text-light: #F8F9FA;
    
    /* UI COLORS */
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
    
    /* EFFECTS */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-nav {
    padding: 8px 20px;
    margin-left: 10px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    display: inline-block;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center {
    text-align: center;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--primary-green);
}

.logo-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--dark-gray);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-green);
    position: relative;
}

nav ul li a.active {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    font-weight: 600;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    left: 0;
    bottom: -5px;
}

nav ul li a:hover {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    left: 0;
    bottom: -5px;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    background: url('../images/home.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    margin-top: 90px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero .btn {
    margin: 0 10px;
    font-size: 1.1rem;
    padding: 14px 32px;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(46, 139, 87, 0.85), rgba(46, 139, 87, 0.9)), url('../images/hero-about.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 90px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Value Propositions */
.value-props {
    background-color: var(--off-white);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prop-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.prop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.prop-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 1.5rem;
}

.prop-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* About Preview & About Content */
.about-preview {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Preview & Services Detail */
.services-preview {
    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-detail-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-detail-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-detail-header h3 {
    color: var(--white);
    margin-bottom: 0;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.service-detail-body {
    padding: 30px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--off-white);
    border-radius: 6px;
}

.role-item i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list i {
    color: var(--success);
    margin-top: 3px;
}

/* Process Section */
.process-section {
    background-color: var(--off-white);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    z-index: 1;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    border: 5px solid var(--white);
    box-shadow: 0 0 0 4px var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.step-content {
    padding-top: 15px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Testimonials */
.testimonials-preview {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--medium-gray);
    padding-top: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-green);
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Compliance Badges */
.compliance-badges {
    background-color: var(--off-white);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.badge-item {
    background-color: var(--white);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.badge-item h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--off-white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    font-size: 3rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 1.5rem;
}

.vision-card {
    border-top: 5px solid var(--primary-green);
}

.mission-card {
    border-top: 5px solid var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

/* Values Section */
.values-section {
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Difference Section */
.difference-section {
    background-color: var(--off-white);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.difference-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.difference-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.difference-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.difference-item i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

/* CTA Sections */
.cta-section, .service-cta, .compliance-cta {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.cta-section h2, .service-cta h2, .compliance-cta h2 {
    color: var(--white);
}

.cta-section p, .service-cta p, .compliance-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Page Section */
.page-section {
    background-color: var(--white);
}

.content-block {
    max-width: 900px;
    margin: 0 auto 40px;
}

.highlight-box {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin: 30px 0;
    font-style: italic;
}

.highlight-box i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-right: 10px;
}

/* Compliance Page Styles */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.compliance-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.compliance-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.compliance-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    z-index: 1;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.timeline-date {
    width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    border: 5px solid var(--white);
    box-shadow: 0 0 0 4px var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.timeline-content {
    padding-top: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

/* Legal Section */
.legal-section {
    background-color: var(--off-white);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.legal-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.legal-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.legal-card i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

/* SDG Section */
.sdg-section {
    background-color: var(--white);
}

.sdg-content {
    max-width: 800px;
    margin: 0 auto;
}

.sdg-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--off-white);
    border-radius: var(--border-radius);
}

.sdg-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sdg-text h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--primary-green);
}

.contact-text p {
    margin-bottom: 0;
}

.business-hours {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--off-white);
    border-radius: var(--border-radius);
}

.business-hours h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.business-hours li:before {
    content: '•';
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    position: absolute;
    left: 0;
}

.social-contact {
    margin-top: 30px;
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.2); /* Updated RGBA to match gray */
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Locations Section */
.locations-section {
    background-color: var(--off-white);
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.location-info {
    padding: 30px;
}

.location-info h3 {
    margin-bottom: 20px;
    color: var(--primary-green);
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-info i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-top: 3px;
}

.location-map {
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 30px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.historical-offices {
    margin-top: 50px;
}

.historical-offices h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.historical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.historical-office {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.historical-office h4 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.historical-office p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.office-status {
    font-style: italic;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    font-weight: 500;
}

/* Contact Options */
.contact-options {
    background-color: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.option-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 1.5rem;
}

.option-card h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.option-card p {
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 70px 0 30px;
}

footer h2, footer h3 {
    color: var(--white);
}

footer p {
    color: var(--text-light);
}

footer a {
    color: var(--text-light);
}

footer a:hover {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    margin-bottom: 20px;
}

.footer-col .logo img {
    height: 80px;
}

.footer-col .logo-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.footer-col .logo-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   Additional Styles for Sub-Pages - UPDATED
   ============================================ */

/* History Page Styles */
.history-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.history-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    z-index: 1;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.timeline-year {
    width: 70px;
    height: 70px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    border: 5px solid var(--white);
    box-shadow: 0 0 0 4px var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.timeline-content {
    padding-top: 10px;
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.timeline-item.highlight .timeline-year {
    background-color: var(--success);
    transform: scale(1.1);
}

.milestones-section {
    margin: 60px 0;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.milestone-card {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 10px;
}

.milestone-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-green);
}

.historical-offices {
    margin: 60px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.office-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--medium-gray);
    transition: var(--transition);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.office-card.current {
    border-top-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.office-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-green);
}

.office-card h3 i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.office-card p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.history-cta {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 60px;
}

.history-cta h2 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.history-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Placements Page Styles */
.services-offered {
    margin: 60px 0;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 15px;
}

.category-card h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.category-list {
    list-style: none;
    margin-top: 15px;
}

.category-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.category-list li:before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.placement-types {
    margin: 60px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.type-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.type-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px;
}

.type-header h3 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.type-header i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.type-body {
    padding: 25px;
}

.type-body h4 {
    margin: 20px 0 10px;
    color: var(--primary-green);
}

.type-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.type-body ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.type-body ul li:before {
    content: '•';
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.placement-process {
    margin: 60px 0;
}

.process-details {
    max-width: 900px;
    margin: 0 auto;
}

.process-step-detailed {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number-large {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content-detailed {
    flex: 1;
    padding-top: 10px;
}

.step-content-detailed h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.step-content-detailed ul {
    list-style: none;
    margin: 15px 0;
}

.step-content-detailed ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-content-detailed ul li:before {
    content: '→';
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.placement-benefits {
    margin: 60px 0;
}

.benefits-details {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.benefit-icon-text {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.placement-cta {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 60px;
}

.placement-cta h2 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* How We Work Page Styles */
.detailed-process {
    max-width: 900px;
    margin: 0 auto 60px;
}

.process-step-full {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.process-step-full:hover {
    box-shadow: var(--shadow-hover);
}

.step-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-header h3 {
    color: var(--white);
    margin-bottom: 0;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content-full {
    padding: 30px;
}

.step-content-full ul {
    list-style: none;
    margin: 15px 0;
}

.step-content-full ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-content-full ul li:before {
    content: '•';
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.step-contact-info {
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.step-contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-contact-info i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    width: 20px;
}

.service-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.tier-card {
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--medium-gray);
}

.tier-card h4 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.step-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.step-note p {
    margin-bottom: 10px;
    font-weight: 500;
}

.interview-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.option-card-small {
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.option-card-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.option-card-small i {
    font-size: 2rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 10px;
}

.option-card-small p {
    margin-bottom: 0;
}

.highlight-step {
    border: 2px solid var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.important-note {
    background-color: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.important-note h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #0c5460;
}

.important-note h4 i {
    color: #17a2b8;
}

.placement-documents {
    margin: 25px 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.document-item {
    background-color: var(--off-white);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.document-item i {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.document-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.support-timeline {
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.support-timeline h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.support-timeline ul {
    list-style: none;
}

.support-timeline ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.support-timeline ul li:before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.worker-process {
    margin: 60px 0;
    background-color: var(--off-white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.worker-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.worker-step {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.worker-step h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.worker-step-number {
    width: 35px;
    height: 35px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.responsibilities-section {
    margin: 60px 0;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.responsibility-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.responsibility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.resp-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 20px;
}

.responsibility-card h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.process-cta {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

.process-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.process-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

/* Part-Time Page Styles */
.parttime-how {
    margin: 60px 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.how-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.how-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.how-icon {
    font-size: 2.5rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    margin-bottom: 20px;
}

.how-card h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.payment-structure {
    margin: 60px 0;
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.payment-card {
    display: flex;
    gap: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.payment-content h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.payment-content ul {
    list-style: none;
    margin: 15px 0;
}

.payment-content ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.payment-content ul li:before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.scheduling-section {
    margin: 60px 0;
}

.scheduling-details {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.scheduling-details > div {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--medium-gray);
}

.scheduling-details > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.scheduling-details h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.scheduling-details h4 i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.scheduling-details ul {
    list-style: none;
    margin-top: 10px;
}

.scheduling-details ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.scheduling-details ul li:before {
    content: '•';
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.packages-section {
    margin: 60px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.package-card.popular {
    border: 2px solid var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    color: var(--primary-green);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.package-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.package-header h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.package-body {
    padding: 25px;
}

.package-body ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-body ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-body ul li i.fa-check {
    color: var(--success);
}

.package-body ul li i.fa-times {
    color: #dc3545;
}

.custom-package {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 40px;
}

.custom-package h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.custom-package h4 i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.benefits-section {
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.ideal-for-section {
    margin: 60px 0;
}

.ideal-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ideal-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ideal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ideal-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.ideal-card h4 i {
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.comparison-section {
    margin: 60px 0;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--off-white);
}

.parttime-cta {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 60px;
}

.parttime-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.parttime-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

/* Testimonials Page Styles */
.testimonial-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--off-white);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: var(--medium-gray);
}

.filter-btn.active {
    background-color: var(--primary-green);
    color: var(--white);
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-full-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-type .type-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.parttime-badge {
    background-color: #e3f2fd;
    color: #1565c0;
}

.worker-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.employer-badge {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #ffc107;
}

.rating span {
    font-weight: 600;
    margin-left: 5px;
}

.testimonial-content-full {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-full {
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-green);
}

.author-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.service-detail {
    font-size: 0.85rem !important;
    color: var(--dark-gray) !important;
    font-style: italic;
}

.highlight-testimonial {
    border: 2px solid var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    position: relative;
}

.highlight-testimonial:before {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-testimonials {
    margin: 60px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-placeholder {
    height: 200px;
    background-color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--secondary-gray); /* CHANGED FROM GOLD TO GRAY */
}

.video-info {
    padding: 25px;
}

.video-info h4 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.testimonial-stats {
    margin: 60px 0;
    background-color: var(--off-white);
    padding: 50px;
    border-radius: var(--border-radius);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.submit-testimonial {
    margin: 60px 0;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.submit-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-half {
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.star-rating i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.star-rating i:hover {
    color: #ffc107;
}

.star-rating i.fas {
    color: #ffc107;
}

.testimonials-cta {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonials-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.testimonials-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .page-hero h1 {
        font-size: 2.4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }
    
    nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero .btn {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }
    
    .page-hero {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-steps:before {
        left: 35px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin-right: 20px;
    }
    
    .timeline:before {
        left: 35px;
    }
    
    .timeline-date {
        width: 70px;
        height: 70px;
        font-size: 1.1rem;
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .props-grid,
    .services-grid,
    .testimonials-grid,
    .badges-grid,
    .values-grid,
    .difference-grid,
    .benefits-grid,
    .compliance-grid,
    .legal-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .timeline:before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .timeline-date {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .sdg-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sdg-icon {
        margin: 0 auto 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive Adjustments for Sub-Pages */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .history-timeline:before {
        display: none;
    }
    
    .benefit-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-card {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonial-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}