/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2BAABD;
    --secondary-color: #19889C;
    --accent-color: #ff6b35;
    --orange-accent: #ff6b35;
    --teal-light: #4DCDD1;
    --teal-dark: #167D87;
    --bright-teal: #2BAABD;
    --teal-bg: #2BAABD;
    --text-dark: #1a4d52;
    --text-medium: #4a6b6f;
    --text-light: #7a9397;
    --heading-primary: #0d3439;
    --heading-secondary: #1a4d52;
    --heading-accent: #167D87;
    --background-light: #f8fafb;
    --background-section: #ffffff;
    --background-alt: #f1f8f9;
    --background-soft: #e8f4f5;
    --white: #ffffff;
    --border-color: #e9ecef;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --error-color: #d63031;
    --blue-highlight: #2BAABD;
    --gradient-bg: linear-gradient(135deg, #2BAABD 0%, #19889C 100%);
    --hero-gradient: linear-gradient(135deg, #2BAABD 0%, #19889C 100%);
    --button-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --shadow-light: 0 2px 15px rgba(43, 170, 189, 0.15);
    --shadow-medium: 0 8px 30px rgba(43, 170, 189, 0.25);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 35px rgba(43, 170, 189, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --max-width: 1200px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--button-gradient);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--bright-teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 184, 148, 0.3);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-signin {
    background: linear-gradient(135deg, var(--primary-color), #1a9a8c);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 170, 189, 0.3);
    background: linear-gradient(135deg, #1a9a8c, var(--primary-color));
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.phone-number:hover {
    background: rgba(0, 184, 148, 0.15);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
    background: var(--bright-teal);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    margin-top: 2rem;
}

.hero-text h1 {
    color: #ff8c42;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-brand {
    color: #ffffff;
}

.hero-tagline {
    color: var(--orange-accent);
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-availability {
    color: #ff8c42;
    font-size: 1.1rem;
    font-style: italic;
    margin: 1rem 0 2rem 0;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.3);
}

/* Trust Signals */
.trust-signals {
    padding: 50px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(25, 136, 156, 0.2);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--background-light);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 2rem;
}

.highlight {
    color: var(--orange-accent);
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 650px;
    color: #1a4d52;
    line-height: 1.7;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(25, 136, 156, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 6px 20px rgba(25, 136, 156, 0.25);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(25, 136, 156, 0.1) 0%, rgba(43, 170, 189, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    flex-grow: 1;
}

.service-btn {
    background: var(--bright-teal);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: var(--border-radius);
    display: inline-block;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.3);
    text-transform: uppercase;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 136, 156, 0.4);
    background: var(--primary-color);
}

/* Services Overview */
.services-overview {
    padding: 50px 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 2px solid rgba(0, 184, 148, 0.2);
}

.overview-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.25);
}

.overview-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* How It Works Preview */
.how-it-works-preview {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 206, 201, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--bright-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-bg);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 184, 148, 0.05);
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 184, 148, 0.1);
}

.cta-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-text i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4851 0%, #2d5a63 50%, #1a4851 100%);
    color: var(--white);
    padding: 35px 0 15px;
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--button-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: #e1e8e9;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #e1e8e9;
}

.contact-info i {
    color: var(--secondary-color);
    width: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e1e8e9;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(43, 170, 189, 0.3);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    color: #b8c7c8;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom .disclaimer {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(43, 170, 189, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.8rem;
    line-height: 1.4;
    color: #d1dee0;
}

.footer-bottom .disclaimer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.business-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.business-info p {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimers {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-color);
    text-align: left;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.5rem !important;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--hero-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
}

.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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 2px solid rgba(0, 184, 148, 0.2);
}

.about-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 148, 0.25);
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0, 184, 148, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bg);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    margin: 0;
    color: var(--text-light);
}

.service-areas {
    display: grid;
    gap: 1rem;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.area-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.area-card h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.area-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* How It Works Detailed */
.how-it-works-detailed {
    padding: 80px 0;
    background: var(--background-light);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

.step-detail.reverse {
    grid-template-columns: 1fr 200px;
}

.step-detail.reverse .step-content {
    order: 1;
}

.step-detail.reverse .step-visual {
    order: 2;
}

.step-visual {
    text-align: center;
}

.step-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.service-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.verification-features,
.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature,
.benefit {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.feature i,
.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.important-note {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.important-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Pricing Info */
.pricing-info {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.pricing-card:hover {
    box-shadow: var(--shadow-medium);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pricing-features i {
    color: var(--success-color);
}

/* FAQ Section */
.faq-section,
.contact-faq {
    padding: 80px 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Experts Page */
.verification-process {
    padding: 80px 0;
    background: var(--white);
}

/* Verification Showcase */
.verification-showcase {
    padding: 80px 0;
    background: var(--background-light);
}

.verification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verification-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.verification-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.verification-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.verification-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 2px solid rgba(0, 184, 148, 0.2);
}

.verification-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.25);
}

.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.verification-step {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.verification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-icon i {
    font-size: 2rem;
    color: var(--white);
}

.expert-categories {
    padding: 80px 0;
    background: var(--background-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-header {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-content {
    padding: 2rem;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.category-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.expert-count {
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.expert-count .count {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.expert-count .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Expert Qualifications */
.expert-qualifications {
    padding: 80px 0;
    background: var(--white);
}

.qualifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.qualification-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.qualification-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.qualifications-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-bg);
    color: var(--white);
    border-radius: var(--border-radius);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
}

/* Expert Testimonials */
.expert-testimonials {
    padding: 80px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.testimonial-content .stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-methods {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-method-card.priority {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--secondary-color);
}

.contact-btn.address {
    background: var(--background-light);
    color: var(--text-dark);
}

.method-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.method-note i {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.form-submit {
    margin-top: 1rem;
    justify-self: start;
}

/* Business Hours */
.business-hours {
    padding: 80px 0;
    background: var(--background-light);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.hours-day .day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-day .time {
    color: var(--text-light);
}

.hours-note {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.emergency-card h3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-details {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--hero-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctadots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctadots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .overview-text {
        order: 2;
    }
    
    .overview-image {
        order: 1;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Page-specific responsive styles */
    .about-grid,
    .info-grid,
    .qualifications-content,
    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-detail,
    .step-detail.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-detail.reverse .step-content,
    .step-detail.reverse .step-visual {
        order: unset;
    }
    
    .company-stats,
    .qualifications-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card.priority {
        transform: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services,
    .how-it-works-preview {
        padding: 60px 0;
    }
    
    .service-card,
    .trust-item {
        padding: 1.5rem;
    }
}

/* Business Credentials */
.business-credentials {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.business-credentials h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.business-credentials p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.business-credentials strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Compliance Section */
.compliance-section {
    padding: 60px 0;
    background: rgba(25, 136, 156, 0.05);
    border-top: 1px solid var(--border-color);
}

.compliance-content h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.compliance-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-color);
}

.compliance-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-item h3 i {
    font-size: 1rem;
}

.compliance-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* New Homepage Sections */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: var(--heading-primary);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-header h2 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.highlight-blue {
    color: var(--primary-color);
    font-weight: 600;
}

.section-subtitle {
    color: var(--heading-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Hero Section Updates */
.hero-availability {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-style: italic;
    margin: 1rem 0 2rem 0;
}

/* How It Works Section - Updated Design */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fcfd 0%, #eef7f8 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfb 100%);
    padding: 1.8rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 25px rgba(43, 170, 189, 0.12);
    text-align: left;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(43, 170, 189, 0.1);
    height: fit-content;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(43, 170, 189, 0.18);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2BAABD 0%, #19889C 100%);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(43, 170, 189, 0.3);
}

.step-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(43, 170, 189, 0.15) 0%, rgba(43, 170, 189, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(43, 170, 189, 0.2);
}

.step-icon-circle i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.step-card h3 {
    color: var(--heading-secondary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.step-note {
    background: rgba(43, 170, 189, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    margin-top: 1rem;
}

.step-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.step-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Problem to Solution Section */
.problem-solution {
    padding: 80px 0;
    background: var(--white);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-step {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.solution-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.solution-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.solution-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.solution-step h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.solution-step p {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-time {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(43, 170, 189, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.consultation-note {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 184, 148, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--success-color);
}

.consultation-note p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

.consultation-note i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

/* Expert Areas Section - Updated */
.expert-areas {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdfe 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-card {
    background: linear-gradient(135deg, #ffffff 0%, #f6fcfd 100%);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(43, 170, 189, 0.15);
    box-shadow: 0 2px 15px rgba(43, 170, 189, 0.08);
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--teal-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(43, 170, 189, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #eef8f9 100%);
}

.area-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    color: var(--teal-dark);
    transform: scale(1.1);
}

.area-card h3 {
    color: var(--heading-secondary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.area-card p {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.08);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.disclaimer p {
    color: var(--heading-secondary);
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

.disclaimer i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Meet Experts Section - Updated Layout */
.meet-experts {
    padding: 60px 0;
    background: linear-gradient(135deg, #f6fbfc 0%, #ecf6f7 100%);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.expert-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfe 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(43, 170, 189, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(43, 170, 189, 0.12);
    height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--success-color) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.expert-card:hover::before {
    transform: scaleX(1);
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(43, 170, 189, 0.18);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
}

.expert-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.expert-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(43, 170, 189, 0.3);
    transition: var(--transition);
}

.expert-card:hover .avatar-circle {
    transform: scale(1.05);
    box-shadow: 0 3px 15px rgba(43, 170, 189, 0.4);
}

.expert-info {
    flex: 1;
    min-width: 0;
}

.expert-card h3 {
    color: var(--heading-secondary);
    margin-bottom: 0.2rem;
    font-size: 1rem;
    font-weight: 600;
}

.expert-card h4 {
    color: var(--heading-accent);
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.expert-experience {
    margin-bottom: 0.8rem;
}

.expert-experience p {
    color: var(--success-color);
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

.expert-experience i {
    margin-right: 0.3rem;
}

.expert-description {
    flex: 1;
}

.expert-description p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
    font-size: 0.8rem;
}

/* Why Choose Section - Updated */
.why-choose {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9feff 0%, #f3fbfc 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafefe 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(43, 170, 189, 0.1);
    transition: var(--transition);
    text-align: left;
    height: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(43, 170, 189, 0.06);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--success-color) 100%);
    transform: scaleY(0);
    transition: var(--transition);
}

.feature-card:hover::after {
    transform: scaleY(1);
}

.feature-card:hover {
    border-color: rgba(43, 170, 189, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(43, 170, 189, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f6fcfd 100%);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--teal-dark);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--heading-secondary);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section - Accordion Style */
.faq {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfe 100%);
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafefe 100%);
    border: 1px solid rgba(43, 170, 189, 0.15);
    border-radius: var(--border-radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(43, 170, 189, 0.08);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(43, 170, 189, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fcfd 0%, #f1f9fa 100%);
    transition: var(--transition);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--teal-light) 100%);
    transform: scaleY(0);
    transition: var(--transition);
}

.faq-question:hover::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: linear-gradient(135deg, #eef7f8 0%, #e8f4f5 100%);
}

.faq-question h3 {
    color: var(--heading-secondary);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #fcfefe 100%);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 1.2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--heading-secondary);
    font-weight: 600;
}

.billing-notice {
    background: linear-gradient(135deg, rgba(43, 170, 189, 0.08) 0%, rgba(43, 170, 189, 0.05) 100%);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    margin-top: 0.8rem;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(43, 170, 189, 0.1);
}

.billing-notice p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--heading-secondary);
}

.billing-notice i {
    color: var(--primary-color);
    margin-right: 0.4rem;
}

.billing-notice a {
    color: var(--heading-accent);
    text-decoration: none;
    font-weight: 600;
}

.billing-notice a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* Testimonial Section */
.testimonial {
    padding: 60px 0;
    background: var(--gradient-bg);
    color: var(--white);
    text-align: center;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial h2 i {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.mission {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Final CTA Section */
.final-cta {
    padding: 50px 0;
    background: linear-gradient(135deg, #f4fbfc 0%, #ebf6f7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::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 60 60"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232BAABD" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--heading-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
}

.cta-content h2 i {
    color: var(--accent-color);
}

.btn-large {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c42 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
    color: var(--white);
    font-weight: 600;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-card {
        height: 160px;
    }
    
    .expert-card {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
        color: var(--heading-primary);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card,
    .area-card,
    .expert-card,
    .feature-card {
        padding: 1.2rem;
    }
    
    .step-card h3,
    .area-card h3,
    .expert-card h3,
    .feature-card h3 {
        color: var(--heading-secondary);
    }
    
    .area-card {
        height: 140px;
    }
    
    .expert-card {
        height: auto;
    }
    
    .expert-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        color: var(--heading-secondary);
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.2rem;
    }
    
    .testimonial h2,
    .cta-content h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial h2 {
        color: var(--white);
    }
    
    .cta-content h2 {
        color: var(--heading-primary);
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-card {
        height: 120px;
    }
}

/* Sign In Page Styles */
.signin-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a9a8c 50%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 60px 0;
}

.signin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.signin-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.signin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signin-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
}

.brand-white {
    color: var(--heading-primary);
    font-size: 2rem;
    font-weight: 700;
}

.signin-header h2 {
    color: var(--heading-primary);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.signin-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.auth-container {
    position: relative;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--heading-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--text-medium);
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(43, 170, 189, 0.1);
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-medium);
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e8ed;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.social-signin {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    padding: 12px;
    border: 2px solid #e1e8ed;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-google:hover {
    border-color: #db4437;
    background: #db4437;
    color: white;
}

.btn-facebook:hover {
    border-color: #4267B2;
    background: #4267B2;
    color: white;
}

.auth-switch {
    text-align: center;
    color: var(--text-medium);
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.signin-features {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(43, 170, 189, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.signin-section .signin-features {
    background: rgba(255, 255, 255, 0.95) !important;
}

.signin-section .signin-features h3 {
    color: #1a4d52 !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: none;
}

.signin-section .signin-features .feature-content h4 {
    color: #2c3e50 !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.signin-section .signin-features .feature-content p {
    color: #34495e !important;
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: none;
}

.signin-features h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    background: rgba(43, 170, 189, 0.1);
    border: 2px solid rgba(43, 170, 189, 0.3);
    border-radius: 12px;
    padding: 12px;
    color: #1a4d52;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.signin-section .signin-features .feature-icon {
    background: rgba(43, 170, 189, 0.1) !important;
    border: 2px solid rgba(43, 170, 189, 0.3) !important;
    color: #1a4d52 !important;
}

.feature-content h4 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Sign In Page */
@media (max-width: 968px) {
    .signin-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .signin-content {
        padding: 2rem;
    }
    
    .signin-features {
        order: -1;
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .signin-section {
        padding: 100px 0 40px 0;
    }
    
    .signin-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .signin-features {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .logo-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .brand-white {
        font-size: 1.6rem;
    }
    
    .social-signin {
        gap: 0.5rem;
    }
}

/* General Mobile Layout Improvements */
@media (max-width: 768px) {
    /* Container padding adjustment */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Section padding adjustments */
    section {
        padding: 3rem 0 !important;
    }
    
    /* Navigation improvements */
    .nav-menu {
        padding: 1rem 0 !important;
    }
    
    .nav-menu li {
        margin: 0.5rem 0 !important;
    }
    
    .nav-link {
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Button improvements */
    .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-section {
        margin-bottom: 1.5rem !important;
    }
    
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    /* Extra mobile adjustments */
    .container {
        padding: 0 0.75rem !important;
    }
    
    section {
        padding: 2.5rem 0 !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
    }
    
    .btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.85rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
    }
}

/* How It Works Page Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 4rem 0 2rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .hero-stats > div {
        min-width: auto !important;
        width: 200px !important;
        margin: 0 auto !important;
        padding: 1rem 1.5rem !important;
    }
    
    .hero-stats div div:first-child {
        font-size: 1.8rem !important;
    }
    
    .hero-stats div div:last-child {
        font-size: 0.8rem !important;
    }
    
    /* Steps Grid Mobile */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .step-card {
        padding: 2rem 1.5rem !important;
        text-align: center !important;
    }
    
    .step-number {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .step-icon-circle {
        margin: 0 auto 1rem auto !important;
        width: 60px !important;
        height: 60px !important;
    }
    
    .step-icon-circle i {
        font-size: 1.5rem !important;
    }
    
    .step-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .step-card p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Expert Service Areas Mobile */
    .experts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .expert-card {
        min-height: auto !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    .avatar-circle {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    .expert-card h3 {
        font-size: 1rem !important;
    }
    
    .expert-card h4 {
        font-size: 0.85rem !important;
    }
    
    .expert-card p {
        font-size: 0.8rem !important;
    }
    
    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 400px !important;
    }
    
    .pricing-card.featured {
        transform: none !important;
        order: -1 !important;
    }
    
    .pricing-card {
        padding: 1.5rem !important;
    }
    
    .price-amount {
        font-size: 1.8rem !important;
    }
    
    .pricing-features li {
        font-size: 0.85rem !important;
    }
    
    .btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* FAQ Mobile */
    .faq-question h3 {
        font-size: 1rem !important;
        padding-right: 2rem !important;
    }
    
    .faq-answer p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .cta-actions {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .cta-actions .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .benefit-item {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: center !important;
    }
    
    .benefit-item i {
        font-size: 1rem !important;
    }
    
    .benefit-item span {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-section {
        padding: 3rem 0 1.5rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 1.8rem !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-section p {
        font-size: 0.9rem !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-stats > div {
        width: 160px !important;
        padding: 0.875rem 1rem !important;
    }
    
    .hero-stats div div:first-child {
        font-size: 1.6rem !important;
    }
    
    .hero-stats div div:last-child {
        font-size: 0.75rem !important;
    }
    
    .step-card {
        padding: 1.5rem 1rem !important;
    }
    
    .step-card h3 {
        font-size: 1.1rem !important;
    }
    
    .step-card p {
        font-size: 0.85rem !important;
    }
    
    .expert-card {
        padding: 1.25rem !important;
    }
    
    .pricing-card {
        padding: 1.25rem !important;
    }
    
    .cta-content h2 {
        font-size: 1.8rem !important;
        padding: 0 0.5rem !important;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr !important;
    }
    
    .faq-question h3 {
        font-size: 0.95rem !important;
    }
    
    .faq-answer p {
        font-size: 0.85rem !important;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 900px !important;
    }
    
    .hero-stats {
        gap: 1.5rem !important;
    }
}

/* Message styles for expert dashboard */
.message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
}

.customer-message {
    background: #f8f9fa;
    margin-right: auto;
    border-left: 3px solid #007bff;
}

.expert-message {
    background: #e3f2fd;
    margin-left: auto;
    border-left: 3px solid #28a745;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.85em;
    color: #666;
}

.sender-name {
    font-weight: bold;
}

.message-time {
    font-size: 0.8em;
}

.message-content {
    line-height: 1.4;
}

.no-chats {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.chat-list-item.active {
    background: #e3f2fd;
    border-left: 4px solid #007bff;
}

.chat-status.waiting {
    background: #ffc107;
    color: #000;
}

.chat-status.active {
    background: #28a745;
    color: white;
}