/* ==========================================================================
   Bluecap Advisory - Main Stylesheet
   Professional Business Consultancy Website
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables */
:root {
    --primary-navy: #1e3a8a;
    --primary-navy-dark: #1e40af;
    --secondary-gold: #d97706;
    --accent-light-blue: #3b82f6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --error-red: #ef4444;
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--white);
    border: 2px solid var(--primary-navy);
}

.btn-primary:hover {
    background-color: var(--primary-navy-dark);
    border-color: var(--primary-navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--secondary-gold);
    color: var(--white);
    border: 2px solid var(--secondary-gold);
}

.btn-secondary:hover {
    background-color: #b45309;
    border-color: #b45309;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 0.8rem 0;
}

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

.nav-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin: 0;
}

.nav-logo span {
    color: var(--secondary-gold);
}

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

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-gold);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(30, 58, 138, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background-color: var(--white);
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-gold);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-top-color: var(--secondary-gold);
}

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

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
}

/* Testimonials Carousel */
.testimonials-carousel {
    padding: 80px 0;
    background-color: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-slide {
    display: none;
    padding: 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-gold);
    font-family: serif;
    position: absolute;
    top: -10px;
}

.testimonial-text p::before {
    left: -30px;
}

.testimonial-text p::after {
    right: -30px;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

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

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

.carousel-btn:hover {
    background-color: var(--secondary-gold);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

.indicator.active {
    background-color: var(--secondary-gold);
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

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

.read-more {
    color: var(--primary-navy);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-gold);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background-color: var(--white);
}

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

.overview-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.overview-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mission, Vision, Values */
.mission-vision-values {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.mvv-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

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

.mvv-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mvv-card ul {
    text-align: left;
    color: var(--text-gray);
}

.mvv-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.team-member {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

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

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-medium);
}

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

.member-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--secondary-gold);
    transform: scale(1.1);
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.stats-grid .stat-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-gold);
}

.stats-grid .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

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

/* Trust & Compliance */
.trust-compliance {
    padding: 80px 0;
    background-color: var(--white);
}

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

.compliance-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--success-green);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.compliance-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Services Page Styles */
.services-overview {
    padding: 60px 0;
    background-color: var(--white);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.main-services {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.service-item {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-top-color: var(--secondary-gold);
}

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

.service-header .service-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    flex-shrink: 0;
}

.service-header h3 {
    color: var(--text-dark);
    margin: 0;
}

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

.service-content ul {
    margin-bottom: 2rem;
}

.service-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.service-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: bold;
}

.service-cta {
    margin-top: 1.5rem;
}

/* Industries Served */
.industries-served {
    padding: 80px 0;
    background-color: var(--white);
}

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

.industry-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

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

.industry-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.process-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #f59e0b 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.error-message {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

.form-status.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-info-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-light-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-gold);
}

.social-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

.social-contact h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-gold);
    transform: scale(1.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--bg-section);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    border: none;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background-color: var(--white);
}

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

.contact-faq .faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-gold);
}

.contact-faq .faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-faq .faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Page Styles */
.testimonials-overview {
    padding: 60px 0;
    background-color: var(--white);
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.testimonial-stats .stat-item {
    background: none;
    border: none;
    padding: 1rem;
}

.featured-testimonials {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    border: 2px solid var(--secondary-gold);
}

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

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.client-info p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: var(--secondary-gold);
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-results {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-green);
}

.testimonial-results h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-results ul {
    color: var(--text-gray);
}

.testimonial-results li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Industry Testimonials */
.industry-testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

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

.tab-button {
    padding: 12px 24px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--white);
}

.industry-content {
    max-width: 800px;
    margin: 0 auto;
}

.industry-panel {
    display: none;
}

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

.testimonial-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-gold);
}

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

.testimonial-item cite {
    color: var(--text-dark);
    font-weight: 500;
    font-style: normal;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background-color: var(--bg-section);
}

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

.video-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--secondary-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-gray);
    margin: 0;
}

/* Client Logos */
.client-logos {
    padding: 80px 0;
    background-color: var(--white);
}

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

.logo-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-light);
}

.company-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Blog Page Styles */
.featured-article {
    padding: 60px 0;
    background-color: var(--white);
}

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

.featured-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-category {
    display: inline-block;
    background-color: var(--secondary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.featured-text h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Categories */
.blog-categories {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--white);
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
    background-color: var(--white);
}

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

.blog-card .blog-category {
    font-size: 0.8rem;
    color: var(--secondary-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    margin-top: 2rem;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--white);
}

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

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 14px 30px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Popular Tags */
.popular-tags {
    padding: 80px 0;
    background-color: var(--bg-section);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag {
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--text-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* FAQ Page Styles */
.faq-search {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    position: relative;
}

.search-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-input input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.search-input input:focus {
    outline: none;
    border-color: var(--primary-navy);
}

/* FAQ Categories */
.faq-categories {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-content .faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background-color: var(--secondary-gold);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Still Have Questions */
.still-questions {
    padding: 80px 0;
    background-color: var(--bg-section);
    text-align: center;
}

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

.questions-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.questions-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Popular Resources */
.popular-resources {
    padding: 80px 0;
    background-color: var(--white);
}

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

.resource-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-gold);
}

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

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

.resource-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.resource-item p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--primary-navy);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--secondary-gold);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section h3 span {
    color: var(--secondary-gold);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--secondary-gold);
    transform: scale(1.1);
}

.back-to-top.show {
    display: flex;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-up {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Legal Page Styles
   ========================================================================== */

/* Legal Navigation Tabs */
.legal-navigation {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.legal-nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-tab-button {
    background: none;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.legal-tab-button:hover {
    color: var(--primary-navy);
    background-color: rgba(26, 35, 126, 0.05);
    border-color: var(--primary-navy);
}

.legal-tab-button.active {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.legal-tab-button:focus {
    outline: 2px solid var(--secondary-gold);
    outline-offset: 2px;
}

/* Legal Content */
.legal-content {
    background-color: var(--white);
    min-height: 60vh;
}

.legal-tab-content {
    display: none;
    animation: fadeInContent 0.4s ease;
}

.legal-tab-content.active {
    display: block;
}

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

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-document h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-gold);
    padding-bottom: 0.5rem;
}

.legal-document h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.legal-document h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: var(--secondary-gold);
    border-radius: 2px;
}

.legal-document h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-document p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    text-align: justify;
}

.legal-document ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.last-updated {
    font-style: italic;
    color: var(--text-light) !important;
    background-color: var(--bg-section);
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-gold);
    margin: 1.5rem 0 2.5rem 0;
    font-size: 0.95rem;
}

.contact-info {
    background-color: var(--bg-section);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-navy);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark) !important;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--primary-navy);
}

/* Search Highlights */
.search-highlight {
    background-color: var(--secondary-gold);
    color: var(--white);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

/* Print Styles for Legal Documents */
@media print {
    .legal-navigation,
    .page-header,
    .cta-section {
        display: none !important;
    }
    
    .legal-tab-content {
        display: block !important;
    }
    
    .legal-document {
        max-width: none;
        padding: 0;
    }
    
    .legal-document h2,
    .legal-document h3,
    .legal-document h4 {
        color: #000 !important;
    }
    
    .legal-document h3::before {
        display: none;
    }
    
    .contact-info {
        border: 1px solid #ccc;
        background: none;
    }
}

/* Legal Page Responsive Styles */
@media screen and (max-width: 768px) {
    .legal-nav-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .legal-tab-button {
        width: 200px;
        text-align: center;
        padding: 14px 20px;
    }
    
    .legal-document h2 {
        font-size: 2rem;
    }
    
    .legal-document h3 {
        font-size: 1.3rem;
        margin-left: 0;
    }
    
    .legal-document h3::before {
        display: none;
    }
    
    .legal-document p,
    .legal-document li {
        text-align: left;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .legal-tab-button {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
    }
    
    .legal-document h2 {
        font-size: 1.8rem;
    }
    
    .legal-document h3 {
        font-size: 1.2rem;
    }
    
    .legal-document {
        padding: 0 0.5rem;
    }
}
