/* 
 * EnergyProsperFund - Main Stylesheet
 * Version: 1.0
 */

/* ===== Base Styles ===== */
:root {
    --primary-color: #5E17EB;
    --secondary-color: #2D9CDB;
    --accent-color: #FF6B6B;
    --accent-secondary: #00C9A7;
    --light-bg: #F9F9FF;
    --medium-bg: #EEEEFF;
    --dark-bg: #1A1A2E;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #5E17EB 0%, #2D9CDB 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FF9E80 100%);
    --gradient-secondary: linear-gradient(135deg, #00C9A7 0%, #92FE9D 100%);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

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

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

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

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

/* ===== Buttons ===== */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-small);
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.button.primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(94, 23, 235, 0.2);
}

.button.primary:hover, .button.primary:focus {
    box-shadow: 0 6px 16px rgba(94, 23, 235, 0.3);
    transform: translateY(-2px);
    color: var(--text-light);
}

.button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button.secondary:hover, .button.secondary:focus {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.button.expanded {
    width: 100%;
    display: block;
}

/* ===== Forms ===== */
input, textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(94, 23, 235, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.consent-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.consent-checkbox label {
    font-weight: 400;
    margin-bottom: 0;
}

/* International Telephone Input */
.iti {
    width: 100%;
}

/* ===== Header ===== */
.site-header {
    padding: 1rem 0;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: block;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.main-nav .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.main-nav .menu li {
    margin-left: 1.5rem;
}

.main-nav .menu a {
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.25rem;
}

.main-nav .menu a:hover, .main-nav .menu a:focus, .main-nav .menu a.active {
    color: var(--primary-color);
}

.main-nav .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.main-nav .menu a:hover::after, .main-nav .menu a:focus::after, .main-nav .menu a.active::after {
    width: 100%;
}

.menu-icon {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
}

.menu-icon::before, .menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all var(--transition-fast);
}

.menu-icon::before {
    top: 0;
    box-shadow: 0 9px 0 var(--text-dark);
}

.menu-icon::after {
    bottom: 0;
}

.menu-icon.open::before {
    transform: rotate(45deg);
    top: 9px;
    box-shadow: none;
}

.menu-icon.open::after {
    transform: rotate(-45deg);
    bottom: 9px;
}

.mobile-menu-container {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--text-light);
    overflow: hidden;
    transition: height var(--transition-medium);
    z-index: 99;
    box-shadow: 0 5px 10px var(--shadow-color);
}

.mobile-menu-container.open {
    height: calc(100vh - 72px);
    overflow-y: auto;
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav .menu li {
    margin-bottom: 1rem;
}

.mobile-nav .menu a {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav .menu a:hover, .mobile-nav .menu a:focus, .mobile-nav .menu a.active {
    color: var(--primary-color);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(94, 23, 235, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--text-light);
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 80%;
}

/* ===== Section Styles ===== */
section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Features Section ===== */
.features-section {
    background-color: var(--light-bg);
}

.features-container {
    margin-top: 2rem;
}

.feature-item {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.feature-item h3 {
    margin-bottom: 1rem;
}

/* ===== About Section ===== */
.about-section {
    background-color: var(--text-light);
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 2rem 0;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.about-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.about-features i {
    color: var(--accent-secondary);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* ===== Services Preview ===== */
.services-preview {
    background-color: var(--light-bg);
}

.service-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    height: 100%;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== Case Studies Preview ===== */
.case-studies-preview {
    background-color: var(--text-light);
}

.case-study-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    height: 100%;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.case-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0) 0%, rgba(26, 26, 46, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.case-study-card:hover .case-overlay {
    opacity: 1;
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    margin-bottom: 0.5rem;
}

.view-all-container {
    margin-top: 3rem;
}

/* ===== News Section ===== */
.news-section {
    background-color: var(--light-bg);
}

.news-item {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.news-date {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.news-item h3 {
    margin-bottom: 1rem;
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    background-color: var(--text-light);
}

.contact-content {
    padding-right: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

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

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-form-container {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-form {
    margin-bottom: 0;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav h4, .footer-services h4, .footer-contact h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--text-light);
}

.footer-contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal li {
    margin-left: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover, .footer-legal a:focus {
    color: var(--text-light);
}

/* ===== Page Banner ===== */
.page-banner {
    position: relative;
    height: 300px;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.page-banner h1 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
}

.page-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
    position: relative;
}

/* ===== Experience Page ===== */
.experience-overview {
    background-color: var(--text-light);
}

.experience-content {
    padding: 2rem 0;
}

.experience-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    margin-right: 2rem;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.case-study {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.case-study:last-child {
    border-bottom: none;
}

.case-study-image {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.case-meta {
    display: flex;
    margin-bottom: 1rem;
}

.case-category {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    margin-right: 1rem;
}

.case-date {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.case-summary {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.case-details h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.results-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.results-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.results-list i {
    color: var(--accent-secondary);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.case-quote {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.case-quote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.case-quote cite {
    font-style: normal;
    font-weight: 700;
}

.industries-section {
    background-color: var(--light-bg);
}

.industry-item {
    text-align: center;
    padding: 2rem;
}

.industry-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

/* ===== Services Page ===== */
.services-overview {
    background-color: var(--text-light);
}

.service-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-section:last-child {
    border-bottom: none;
}

.service-section-alt {
    background-color: var(--light-bg);
}

.service-image-container {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    width: fit-content;
}

.service-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
}

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

.integration-partners {
    background-color: var(--text-light);
}

.integration-item {
    text-align: center;
    padding: 2rem;
}

.integration-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.integration-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.integration-list li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.integration-list li:last-child {
    border-bottom: none;
}

.implementation-process {
    background-color: var(--light-bg);
}

.process-steps {
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.faq-section {
    background-color: var(--text-light);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.cta-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== Pricing Page ===== */
.pricing-overview {
    background-color: var(--text-light);
    text-align: center;
}

.pricing-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-tables {
    background-color: var(--light-bg);
}

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-plans {
    margin-top: 3rem;
}

.pricing-plan {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    height: 100%;
    position: relative;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.pricing-plan.featured {
    border: 2px solid var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.pricing-plan.featured:hover {
    transform: translateY(-15px);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom-left-radius: var(--border-radius-small);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.plan-header h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 0;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-price .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
}

.plan-features li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.plan-features i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.plan-features i.fa-check {
    color: var(--accent-secondary);
}

.plan-features i.fa-times {
    color: var(--accent-color);
}

.plan-footer {
    padding: 0 2rem 2rem;
}

.download-price-list {
    background-color: var(--text-light);
    text-align: center;
}

.download-content {
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.download-button {
    margin-top: 1.5rem;
}

.download-button i {
    margin-right: 0.5rem;
}

.custom-solutions {
    background-color: var(--light-bg);
}

.custom-solutions-image {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.custom-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--text-light);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
}

/* ===== Contact Page ===== */
.contact-information {
    background-color: var(--text-light);
    padding-bottom: 0;
}

.contact-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0;
}

.map-section {
    padding-top: 3rem;
    padding-bottom: 0;
}

.map-container {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-image {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-top: 2rem;
}

.working-hours {
    background-color: var(--light-bg);
}

.hours-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.hours-card h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.hours-group h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hours-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.hours-note p {
    margin-bottom: 0;
    font-style: italic;
}

/* ===== Thank You Page ===== */
.thank-you-section {
    background-color: var(--text-light);
    padding: 6rem 0;
}

.thank-you-content {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 3rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.response-time {
    font-style: italic;
    color: var(--text-medium);
    margin-top: 1.5rem;
}

.back-home {
    margin-top: 2rem;
}

.additional-info-section {
    background-color: var(--light-bg);
}

.info-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.info-card h3 {
    margin-bottom: 1rem;
}

.info-card .button {
    margin-top: 1.5rem;
}

/* ===== Policy Pages ===== */
.policy-content {
    background-color: var(--text-light);
    padding: 4rem 0;
}

.policy-sidebar {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.policy-sidebar h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-nav li {
    margin-bottom: 0.75rem;
}

.policy-nav a {
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.policy-nav a:hover, .policy-nav a:focus {
    color: var(--primary-color);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-details {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th, .cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 700;
}

/* ===== Cookie Consent ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px var(--shadow-color);
    display: none;
}

.cookie-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow-y: auto;
}

.cookie-modal-content {
    background-color: var(--text-light);
    border-radius: var(--border-radius-medium);
    margin: 10% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.close-cookie-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-settings-options {
    margin: 2rem 0;
}

.cookie-option {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: auto;
}

.cookie-option label {
    flex: 1;
}

.cookie-option label p {
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--text-medium);
}

.cookie-settings-buttons {
    text-align: center;
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1023px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-video-container {
        height: 500px;
    }
    
    .about-content, .experience-content, .services-content {
        padding: 1rem 0;
    }
    
    .contact-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .pricing-plan {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-video-container {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .feature-item, .service-card, .case-study-card, .news-item {
        margin-bottom: 1.5rem;
    }
    
    .about-image-container, .experience-image-container, .service-image-container, .case-study-image {
        margin-bottom: 2rem;
    }
    
    .footer-about, .footer-nav, .footer-services, .footer-contact {
        margin-bottom: 2rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-legal li {
        margin: 0 0.75rem;
    }
    
    .copyright {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .button {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero-video-container {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-container, .thank-you-content, .hours-card, .download-content {
        padding: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .process-step {
        padding: 0;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 5% auto;
    }
}