/* In My Consult - Main Stylesheet */
:root {
    /* Brand Colors */
    --primary-color: #2DB67D;
    --secondary-color: #36C4ED;
    --accent-1: #EAB22D;
    --accent-2: #DF205C;
    --accent-3: #52194F;
    
    /* Neutral Colors */
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --secondary-light-color: #D5F5FE;
    --gray-color: #6C757D;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
}

.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Color Classes */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent-1 {
    background-color: var(--accent-1) !important;
}

.bg-accent-2 {
    background-color: var(--accent-2) !important;
}

.bg-accent-3 {
    background-color: var(--accent-3) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent-1 {
    color: var(--accent-1) !important;
}

.text-accent-2 {
    color: var(--accent-2) !important;
}

.text-accent-3 {
    color: var(--accent-3) !important;
}

/* Button Styles */
.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #26a06c;
    border-color: #26a06c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    background: transparent !important;
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 64px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 0.75rem;
    color: var(--dark-color);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Sticky Header */
.navbar.scrolled {
    background-color: var(--white) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
}

.navbar.scrolled .nav-link::after {
    background-color: var(--primary-color);
}

.navbar.scrolled .navbar-toggler {
    color: var(--dark-color);
}

/* Hero Section - Simple & Sober */
.hero-section {
    padding: 12rem 0 8rem;
    background-color: var(--secondary-light-color);
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-3);
    margin-bottom: 0.5rem;
    transition: all 1s ease;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.feature-card {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Vision & Mission Section */
.vision-section {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.vision-card {
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-1);
}

.vision-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Core Values Section */
.values-section {
    padding: 8rem 0;
}

.value-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon.innovation {
    background-color: var(--primary-color);
}

.value-icon.integrity {
    background-color: var(--secondary-color);
}

.value-icon.excellence {
    background-color: var(--accent-1);
}

.value-icon.collaboration {
    background-color: var(--accent-2);
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.service-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid #E9ECEF;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Clientele Section */
.clients-section {
    padding: 8rem 0;
}

.client-stat {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-3);
    margin-bottom: 0.5rem;
    transition: all 1s ease;
}

.client-stat-text {
    font-size: 1.2rem;
    color: var(--gray-color);
    font-weight: 500;
}

.client-card {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid #E9ECEF;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.client-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.2);
}

.client-industry {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #A5D8FF 100%);
}

.industry-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.industry-item:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-item p {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background-color: var(--accent-3);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/quote-bg.png') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-1);
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.quote-author {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.testimonial-card {
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid #E9ECEF;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    color: var(--accent-1);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author h6 {
    margin-bottom: 0.25rem;
    color: var(--accent-3);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light-color);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--light-color);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(45, 182, 125, 0.9), rgba(45, 182, 125, 0.9)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    color: var(--white);
    position: relative;
}

.contact-section .section-header h2,
.contact-section .section-subtitle {
    color: var(--white);
}

.contact-section .section-header h2::after {
    background: var(--white);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #E9ECEF;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(45, 182, 125, 0.25);
}

.contact-section .btn-primary {
    background-color: var(--accent-3);
    border-color: var(--accent-3);
}

.contact-section .btn-primary:hover {
    background-color: #3a1d64;
    border-color: #3a1d64;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--dark-color);
    color: var(--white);
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}
.footer-brand img.footer-logo {
    height: 64px;
}
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}
.footer-links {
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    opacity: 0.8;
    margin: 0;
}

.footer-policy-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-policy-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-policy-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Policy Pages Styles */
.page-header {
    padding: 12rem 0 4rem;
    background-color: var(--secondary-light-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: var(--gray-color);
    font-size: 1.2rem;
}

.page-content {
    padding: 4rem 0 8rem;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-3);
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-policy-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .page-header {
        padding: 10rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}