/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Scheme */
:root {
    --primary-blue: #1e40af;
    --dark-blue: #0f172a;
    --accent-blue: #3b82f6;
    --cyan: #06b6d4;
    --light-cyan: #67e8f9;
    --electric-blue: #0ea5e9;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--cyan) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
}

.btn-secondary::before {
    background: var(--primary-blue);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--cyan);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--gray-100);
    color: var(--cyan);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.hero::after {
    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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--gray-300);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Old Partners Section - Removed to avoid conflicts */

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    color: var(--white);
    background: var(--dark-blue);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.service-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    color: var(--white);
    background: var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-text h2 {
    color: var(--white);
    background: var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Energy Problem Section */
.energy-problem {
    padding: 80px 0;
    background: var(--gray-100);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text h2 {
    color: var(--cyan);
    margin-bottom: 2rem;
}

.problem-text ul {
    list-style: none;
    padding: 0;
}

.problem-text li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.problem-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.5rem;
}

.problem-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.testimonials-text h2 {
    color: var(--white);
    background: var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--cyan);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.testimonial-card cite {
    color: var(--cyan);
    font-weight: 600;
}

/* Free Audit Section */
.free-audit {
    padding: 80px 0;
    background: var(--gray-100);
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audit-text h2 {
    color: var(--cyan);
    margin-bottom: 2rem;
}

.audit-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.audit-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-text h2 {
    color: var(--cyan);
    margin-bottom: 2rem;
}

.faq-accordion {
    max-width: 600px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--gray-100);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-200);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-blue);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--cyan);
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.contact-cta h2 {
    color: var(--cyan);
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
}

.footer-left h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-left p {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-600);
}

.footer-bottom-left p {
    color: var(--gray-400);
    margin: 0;
}

.footer-bottom-right .social-links {
    display: flex;
    gap: 0.5rem;
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-300);
}

.service-overview {
    padding: 80px 0;
    background: var(--white);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.service-text h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-benefits {
    padding: 80px 0;
    background: var(--gray-100);
}

.service-benefits h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.benefit-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-process {
    padding: 80px 0;
    background: var(--white);
}

.service-process h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-cta {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.cta-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray-300);
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-text h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: var(--cyan);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-text span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-form p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.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(--primary-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--cyan);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.map-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-faq {
    padding: 80px 0;
    background: var(--white);
}

.contact-faq h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 10px;
    border-left: 4px solid var(--cyan);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
    background: var(--white);
}

.about-detailed .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-detailed .about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 10px;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.experience-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary-blue);
    font-weight: 600;
}

.industries-section {
    padding: 80px 0;
    background: var(--white);
}

.industries-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-item {
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--cyan);
}

.industry-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-cta {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.about-cta h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Service Levels Styles */
.service-levels {
    padding: 80px 0;
    background: var(--white);
}

.service-levels h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-item {
    padding: 2rem;
    background: var(--gray-100);
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.level-item.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    transform: scale(1.05);
}

.level-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.level-item.featured h3 {
    color: var(--white);
}

.level-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.level-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.level-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cyan);
    font-weight: bold;
}

.level-item.featured li::before {
    color: var(--white);
}

/* Timeline Styles */
.service-timeline {
    padding: 80px 0;
    background: var(--gray-100);
}

.service-timeline h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-date {
    background: var(--cyan);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 400px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    background: var(--gray-200);
    border-color: var(--cyan);
}

.placeholder-image i {
    margin-bottom: 1rem;
}

.placeholder-image p {
    margin: 0;
    font-weight: 500;
}

/* Commission Page Styles */
.commission-structure {
    padding: 4rem 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.commission-details {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-blue);
}

.commission-details h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.commission-details ul {
    list-style: none;
    padding: 0;
}

.commission-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.commission-details li:last-child {
    border-bottom: none;
}

.commission-details strong {
    color: var(--primary-blue);
}

.example-box {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.example-box h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.example-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.example-item.total {
    background: var(--primary-blue);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.example-item .label {
    font-weight: 500;
}

.example-item .value {
    font-weight: 600;
    color: var(--primary-blue);
}

.example-item.total .value {
    color: white;
}

.example-note {
    text-align: center;
    font-style: italic;
    color: var(--gray-600);
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Partners Slider Styles with Slick */
.partners-slider {
    background: var(--gray-50);
    padding: 3rem 0;
    position: relative;
    width: 100%;
}

.partners-slider h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-size: 2rem;
}

.partners-slick-slider {
    margin: 0 auto;
}

.partner-item {
    padding: 0 15px;
    height: 80px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Slick Slider Customization */
.partners-slick-slider .slick-slide {
    height: 80px;
}

.partners-slick-slider .slick-track {
    display: flex;
    align-items: center;
}

.partners-slick-slider .slick-dots {
    bottom: -40px;
}

.partners-slick-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-blue);
}

.partners-slick-slider .slick-dots li.slick-active button:before {
    color: var(--primary-blue);
}

/* Hide arrows for cleaner look */
.partners-slick-slider .slick-prev,
.partners-slick-slider .slick-next {
    display: none !important;
}

/* Responsive partners slider */
@media (max-width: 768px) {
    .partners-slider {
        padding: 2rem 0;
    }
    
    .partners-slider h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partner-item {
        min-width: 150px !important;
        height: 60px !important;
    }
    
    .partner-logo-img {
        max-height: 40px !important;
    }
    
    .partners-track {
        gap: 1rem !important;
    }
}

/* Visual Elements Styles */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    color: white;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: block;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.problem-visual {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--error);
}

.cost-breakdown h3 {
    color: var(--error);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cost-label {
    font-weight: 500;
    color: var(--gray-700);
}

.cost-percentage {
    font-weight: bold;
    color: var(--error);
    font-size: 1.2rem;
}

.audit-visual {
    padding: 2rem;
    background: linear-gradient(135deg, var(--success), #34d399);
    border-radius: 12px;
    color: white;
}

.audit-benefits h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.audit-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.audit-benefits .benefit-item:last-child {
    border-bottom: none;
}

.audit-benefits .benefit-item i {
    color: white;
    font-size: 1.2rem;
}

.faq-visual {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--cyan);
}

.faq-stats h3 {
    color: var(--cyan);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-stat {
    text-align: center;
    padding: 1rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-stat .stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cyan);
    display: block;
}

.faq-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.about-visual {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--cyan);
}

.company-values h3 {
    color: var(--cyan);
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
}

.value-item i {
    color: var(--cyan);
    font-size: 1.2rem;
    width: 20px;
}

.member-avatar {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--light-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.service-visual {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.service-features-visual h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

/* Responsive adjustments for visual elements */
@media (max-width: 768px) {
    .about-stats {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .problem-visual,
    .audit-visual,
    .faq-visual,
    .about-visual,
    .service-visual {
        padding: 1.5rem;
    }
    
    .member-avatar {
        height: 120px;
        width: 120px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .about-content,
    .problem-content,
    .audit-content,
    .testimonials-content,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .service-content,
    .contact-content,
    .about-detailed .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-date {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .partner-logos {
        gap: 1rem;
    }
    
    .partner-logo {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}
