/* ProfitPrisma Custom Stylesheet - flux/vortex.css */

/* CSS Variables - Custom Color Scheme */
:root {
    --ocean-blue: #7209b7;
    --seafoam-light: #f3e5f9;
    --midnight-purple: #4c0677;
    --success-emerald: #2dc100;
    --success-light: #e8f5e8;
    --warning-amber: #ff9902;
    --warning-light: #fff3e0;
    --accent-coral: #e6a12d;
    --accent-light: #fef5e7;
    --neutral-slate: #6c757d;
    --neutral-whisper: #f8f9fa;
    --info-sky: #0088cc;
    --danger-crimson: #cc2229;
    --text-charcoal: #333333;
    --background-pearl: #ffffff;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-charcoal);
    background-color: var(--background-pearl);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 21px;
    color: #555555;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--ocean-blue);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: var(--midnight-purple);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

/* Navigation Styles */
.main-navigation {
    background: var(--background-pearl);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.brand-logo img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--text-charcoal);
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--text-charcoal);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.navigation-menu {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-charcoal);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover:before {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 18px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-pearl);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navigation-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 18px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 15px 25px;
        font-size: 19px;
        color: var(--text-charcoal);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Button Styles */
.primary-button {
    background: var(--ocean-blue);
    color: var(--background-pearl);
    padding: 16px 28px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid var(--ocean-blue);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.primary-button:hover {
    background: transparent;
    color: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 7px 21px rgba(114, 9, 183, 0.25);
}

.secondary-button {
    background: var(--text-charcoal);
    color: var(--background-pearl);
    padding: 16px 28px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid var(--text-charcoal);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.secondary-button:hover {
    background: transparent;
    color: var(--text-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 7px 21px rgba(51, 51, 51, 0.25);
}

.main-button {
    background: var(--accent-coral);
    color: var(--background-pearl);
    padding: 14px 26px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-button:hover {
    background: #d39416;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-showcase {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-item.active-slide {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    margin-top: 15%;
}

.content-wrapper {
    color: var(--background-pearl);
    max-width: 640px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent-coral);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 13px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--background-pearl);
    line-height: 1.2;
    text-shadow: 0px 4px 21px rgba(0, 0, 0, 0.15);
    margin-bottom: 32px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}

.slide-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.slide-btn img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.prev-slide {
    left: 34px;
}

.next-slide {
    right: 34px;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* About Section */
.about-showcase {
    padding: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.about-image-section {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-content-overlay {
    padding: 54px 42px;
    max-width: 490px;
}

.about-text-content h2 {
    color: var(--text-charcoal);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-text-content p {
    color: var(--text-charcoal);
    line-height: 1.8;
    margin-bottom: 21px;
}

.about-highlight-section {
    background: var(--ocean-blue);
    display: flex;
    align-items: center;
    padding: 54px 42px;
}

.highlight-content {
    color: rgba(255, 255, 255, 0.9);
}

.highlight-content p{
    color: rgba(255, 255, 255, 0.9);
}

.highlight-content h2 {
    color: var(--background-pearl);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-content h2 span,
.highlight-content h2 strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.counter-number {
    font-size: 3.2rem;
}

/* Services Section */
.services-showcase {
    padding: 89px 0;
    background: var(--neutral-whisper);
}

.section-header {
    text-align: center;
    margin-bottom: 67px;
}

.header-content h2 {
    color: var(--accent-coral);
    font-size: 3.2rem;
    margin-bottom: 21px;
}

.header-content p {
    font-size: 18px;
    color: #666666;
    max-width: 640px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.service-card {
    background: var(--background-pearl);
    padding: 42px 34px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.service-card:hover {
    background: var(--background-pearl);
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 24px;
}

.service-icon img {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    filter: hue-rotate(270deg) saturate(1.5) brightness(0.8);
}

.service-card h3 {
    color: var(--text-charcoal);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.service-card p {
    color: #666666;
    line-height: 1.7;
}

/* Features Section */
.features-showcase {
    padding: 67px 0;
    background: var(--background-pearl);
}

.section-subtitle {
    display: block;
    font-size: 13px;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}

.features-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
    margin-top: 54px;
}

.feature-wrap {
    background: var(--background-pearl);
    border-radius: 8px;
    box-shadow: 0px 7px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
}

.feature-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 28px 34px 34px;
}

.feature-content h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.feature-content h2 a {
    color: var(--text-charcoal);
}

.feature-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 21px;
}

.feature-category {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-size: 14px;
}

.feature-value {
    color: var(--ocean-blue);
    font-weight: 600;
    margin: 0;
}

.feature-value span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.feature-actions {
    display: flex;
    gap: 12px;
}

.feature-actions a {
    flex: 1;
    text-align: center;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Strategy Section */
.strategy-showcase {
    padding: 89px 0 154px;
    background: var(--neutral-whisper);
}

.strategy-header {
    text-align: center;
    margin-bottom: 54px;
}

.strategy-header h2 {
    color: var(--text-charcoal);
    font-size: 2.8rem;
    font-weight: 600;
}

.tab-navigation {
    margin-bottom: 54px;
    text-align: right;
}

.tab-menu {
    display: flex;
    justify-content: flex-end;
    gap: 42px;
    flex-wrap: wrap;
}

.tab-item {
    position: relative;
}

.tab-link {
    color: var(--text-charcoal);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: all 0.3s ease;
}

.tab-link.active,
.tab-link:hover {
    color: var(--ocean-blue);
}

.tab-link.active:after,
.tab-link:hover:after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.strategy-card {
    background: var(--background-pearl);
    padding: 54px 67px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 42px;
    align-items: center;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    background: var(--background-pearl);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.strategy-info h4 {
    color: var(--text-charcoal);
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.strategy-features {
    list-style: none;
}

.strategy-features li {
    margin-bottom: 18px;
}

.strategy-features h5 {
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strategy-features img {
    width: 16px;
    height: 16px;
    filter: hue-rotate(270deg) saturate(1.2);
}

.strategy-visual img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.strategy-actions {
    text-align: center;
}

.action-button {
    display: block;
    background: var(--warning-amber);
    color: var(--background-pearl);
    padding: 12px 21px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: var(--text-charcoal);
}

.status-available {
    background: var(--info-sky);
}

.status-popular {
    background: var(--danger-crimson);
}

.status-advanced {
    background: var(--info-sky);
}

.status-exclusive {
    background: var(--success-emerald);
}

.more-strategies {
    text-align: center;
    margin-top: 54px;
}

.template-button {
    background: var(--warning-amber);
    color: var(--background-pearl);
    padding: 18px 34px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.template-button:hover {
    background: var(--text-charcoal);
}

/* Content Section */
.content-showcase {
    padding: 89px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.content-image {
    order: 1;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

.rounded-corners {
    border-radius: 12px;
}

.content-text {
    order: 2;
}

.content-text h2 {
    font-family: "Hepta Slab", serif;
    font-size: 2.4rem;
    color: var(--text-charcoal);
    margin-bottom: 24px;
}

/* Footer */
.site-footer {
    background: #3a3a3a;
    padding: 89px 0 42px;
    color: var(--background-pearl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 54px;
    margin-bottom: 67px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 42px;
}

.footer-about h2 {
    color: var(--background-pearl);
    font-size: 1.6rem;
    margin-bottom: 21px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h2 {
    color: var(--background-pearl);
    font-size: 1.3rem;
    margin-bottom: 21px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--background-pearl);
}

.newsletter-section h2 {
    color: var(--background-pearl);
    font-size: 1.3rem;
    margin-bottom: 21px;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 34px;
}

.form-input {
    flex: 1;
    padding: 16px 18px;
    border: 1px solid #6c757d;
    background: var(--background-pearl);
    color: var(--text-charcoal);
    font-size: 15px;
    border-radius: 5px 0 0 5px;
}

.submit-button {
    background: var(--warning-amber);
    color: var(--background-pearl);
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #e68503;
}

.contact-info h2 {
    color: var(--background-pearl);
    font-size: 1.3rem;
    margin-bottom: 21px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 34px;
    text-align: center;
}

.copyright p {
    color: #d2d2d2;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .content-image {
        order: 2;
    }

    .content-text {
        order: 1;
    }
}

@media (max-width: 890px) {
    body {
        padding-top: 78px;
    }

    .hero-showcase {
        height: 540px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-slider {
        grid-template-columns: 1fr;
    }

    .strategy-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tab-menu {
        justify-content: center;
        gap: 21px;
    }

    .tab-navigation {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .header-content h2 {
        font-size: 2.4rem;
    }

    .service-card {
        padding: 28px 21px;
    }

    .strategy-card {
        padding: 34px 24px;
    }

    .about-content-overlay {
        padding: 34px 24px;
    }

    .about-highlight-section {
        padding: 34px 24px;
    }

    .form-group {
        flex-direction: column;
        gap: 12px;
    }

    .form-input,
    .submit-button {
        border-radius: 5px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--ocean-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--midnight-purple);
}

.about-text-content p{
    color: var(--ocean-blue);
}

/* About Page Specific Styles */

/* Page Hero Section */
.page-hero-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-top: 78px;
}

.page-hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text-block {
    color: var(--background-pearl);
    max-width: 680px;
    margin-top: 15%;
}

.page-hero-title {
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--background-pearl);
    line-height: 1.2;
    margin-bottom: 21px;
    text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Company Story Section */
.company-story-area {
    padding: 94px 0;
    background: var(--background-pearl);
}

.story-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 67px;
    align-items: center;
}

.story-heading {
    color: var(--text-charcoal);
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.3;
}

.story-text-section p {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 42px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 21px;
    background: var(--seafoam-light);
    border-radius: 9px;
    border-left: 4px solid var(--ocean-blue);
}

.highlight-icon img {
    width: 32px;
    height: 32px;
    filter: hue-rotate(270deg) saturate(1.4) brightness(0.7);
}

.highlight-text h4 {
    color: var(--midnight-purple);
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.highlight-text p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.story-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Methodology Section */
.approach-methodology {
    padding: 89px 0;
    background: var(--neutral-whisper);
}

.methodology-header {
    text-align: center;
    margin-bottom: 74px;
}

.methodology-header h2 {
    color: var(--text-charcoal);
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.methodology-header p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.step-card {
    background: var(--background-pearl);
    padding: 38px 28px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e5e5;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--ocean-blue);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 28px;
    background: var(--ocean-blue);
    color: var(--background-pearl);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    margin: 24px 0 21px;
}

.step-icon img {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    filter: hue-rotate(270deg) saturate(1.3) brightness(0.8);
}

.step-card h3 {
    color: var(--text-charcoal);
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.step-card p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* Team Section */
.team-showcase-area {
    padding: 92px 0;
    background: var(--background-pearl);
}

.team-section-header {
    text-align: center;
    margin-bottom: 68px;
}

.team-section-header h2 {
    color: var(--text-charcoal);
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 19px;
}

.team-section-header p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 590px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px;
}

.team-member-card {
    background: var(--background-pearl);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
    height: 240px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 32px 28px;
}

.member-info h4 {
    color: var(--text-charcoal);
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.member-role {
    color: var(--ocean-blue);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.member-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 21px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: var(--seafoam-light);
    color: var(--midnight-purple);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Values Section */
.company-values-section {
    padding: 87px 0;
    background: var(--neutral-whisper);
}

.values-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 58px;
    align-items: center;
}

.values-content h2 {
    color: var(--text-charcoal);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 21px;
}

.values-content p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 38px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.value-icon img {
    width: 28px;
    height: 28px;
    filter: hue-rotate(270deg) saturate(1.2) brightness(0.8);
    margin-top: 4px;
}

.value-content h4 {
    color: var(--text-charcoal);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.value-content p {
    color: #666666;
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.values-image {
    width: 100%;
    height: auto;
    border-radius: 11px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.about-cta-section {
    padding: 91px 0;
    background: var(--ocean-blue);
    color: var(--background-pearl);
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 54px;
    align-items: center;
}

.cta-text-area h2 {
    color: var(--background-pearl);
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 21px;
    line-height: 1.3;
}

.cta-text-area p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 34px;
}

.cta-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 21px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.stat-icon img {
    width: 34px;
    height: 34px;
    filter: invert(1) brightness(1.2);
}

.stat-content h3 {
    color: var(--background-pearl);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .values-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 890px) {
    .page-hero-wrapper {
        height: 380px;
    }

    .page-hero-title {
        font-size: 2.4rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-stats {
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .page-hero-title {
        font-size: 2rem;
    }

    .story-heading,
    .methodology-header h2,
    .team-section-header h2,
    .values-content h2,
    .cta-text-area h2 {
        font-size: 2.1rem;
    }

    .step-card {
        padding: 28px 21px;
    }

    .member-info {
        padding: 24px 21px;
    }

    .stat-item {
        padding: 16px;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    height: 420px;
    overflow: hidden;
    margin-top: 78px;
}

.contact-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content-block {
    color: var(--background-pearl);
    max-width: 720px;
    margin-top: 12%;
}

.contact-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--background-pearl);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0px 4px 18px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-showcase {
    padding: 96px 0;
    background: var(--background-pearl);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 68px;
    align-items: flex-start;
}

.contact-details-area h2 {
    color: var(--text-charcoal);
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-details-area p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 42px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 28px;
    background: var(--seafoam-light);
    border-radius: 11px;
    border-left: 4px solid var(--ocean-blue);
    transition: all 0.3s ease;
}

.contact-method-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.method-icon img {
    width: 34px;
    height: 34px;
    filter: hue-rotate(270deg) saturate(1.4) brightness(0.7);
}

.method-content h4 {
    color: var(--midnight-purple);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-content p {
    color: var(--text-charcoal);
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.method-content span {
    color: #777777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.consultation-benefits h3 {
    color: var(--text-charcoal);
    font-size: 1.8rem;
    margin-bottom: 28px;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--neutral-whisper);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--seafoam-light);
    transform: translateX(4px);
}

.benefit-item img {
    width: 22px;
    height: 22px;
    filter: hue-rotate(270deg) saturate(1.3) brightness(0.8);
}

.benefit-item span {
    color: var(--text-charcoal);
    font-size: 0.98rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-area {
    padding: 94px 0;
    background: var(--neutral-whisper);
}

.form-section-wrapper {
    max-width: 890px;
    margin: 0 auto;
}

.form-header-content {
    text-align: center;
    margin-bottom: 58px;
}

.form-header-content h2 {
    color: var(--text-charcoal);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 21px;
}

.form-header-content p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--background-pearl);
    padding: 54px 48px;
    border-radius: 13px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.form-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.input-group {
    flex: 1;
}

.input-group.full-width {
    flex: 1 1 100%;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {
    width: 100%;
    padding: 18px 24px;
    padding-right: 54px;
    border: 2px solid #e6e6e6;
    border-radius: 9px;
    font-size: 16px;
    color: var(--text-charcoal);
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--background-pearl);
    font-family: 'Lora', serif;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-right: 54px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

.input-wrapper input:invalid:focus,
.input-wrapper select:invalid:focus,
.textarea-wrapper textarea:invalid:focus {
    border-color: #e94e3e;
    box-shadow: 0 0 0 3px rgba(233, 78, 62, 0.1);
}

.input-icon,
.textarea-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-icon img,
.textarea-icon img {
    width: 20px;
    height: 20px;
    filter: hue-rotate(270deg) saturate(0.8) brightness(1.2) opacity(0.7);
}

.form-submit-area {
    text-align: center;
    margin-top: 18px;
}

.consultation-submit-btn {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-purple) 100%);
    color: var(--background-pearl);
    padding: 19px 42px;
    border: none;
    border-radius: 34px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(114, 9, 183, 0.3);
    background: linear-gradient(135deg, var(--midnight-purple) 0%, var(--ocean-blue) 100%);
}

.consultation-submit-btn img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.form-privacy-note {
    color: #777777;
    font-size: 0.9rem;
    margin-top: 21px;
    line-height: 1.5;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Messages */
.form-messages {
    margin-top: 34px;
}

.success-message,
.error-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.success-message {
    background: rgba(41, 176, 98, 0.12);
    color: #29b062;
    border: 1px solid rgba(41, 176, 98, 0.2);
}

.error-message {
    background: rgba(233, 78, 62, 0.12);
    color: #e94e3e;
    border: 1px solid rgba(233, 78, 62, 0.2);
}

.success-message img,
.error-message img {
    width: 22px;
    height: 22px;
}

.success-message img {
    filter: hue-rotate(90deg) saturate(1.2) brightness(0.8);
}

.error-message img {
    filter: hue-rotate(0deg) saturate(1.2) brightness(0.8);
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.popup-container {
    background: var(--background-pearl);
    border-radius: 16px;
    padding: 48px 42px;
    max-width: 520px;
    margin: 0 24px;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.show {
    display: flex;
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.popup-icon {
    margin-bottom: 24px;
}

.popup-icon img {
    width: 64px;
    height: 64px;
    filter: hue-rotate(90deg) saturate(1.3) brightness(0.8);
}

.popup-content h3 {
    color: var(--text-charcoal);
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.popup-content p {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.popup-close-btn {
    background: var(--ocean-blue);
    color: var(--background-pearl);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: var(--midnight-purple);
    transform: translateY(-2px);
}

/* Form Submission Animation */
@keyframes formSubmitting {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

.form-submitting .consultation-submit-btn {
    animation: formSubmitting 1.4s infinite;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 890px) {
    .contact-hero-section {
        height: 360px;
    }

    .contact-hero-title {
        font-size: 2.4rem;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .contact-form-container {
        padding: 38px 28px;
    }

    .contact-methods {
        gap: 24px;
    }

    .contact-method-item {
        padding: 21px;
    }
}

@media (max-width: 640px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .form-header-content h2 {
        font-size: 2.2rem;
    }

    .contact-form-container {
        padding: 28px 21px;
    }

    .consultation-submit-btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .popup-container {
        padding: 32px 24px;
        margin: 0 18px;
    }
}

/* Cookies Alert Styles */
.cookies-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-pearl);
    border-top: 3px solid var(--ocean-blue);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
}

.cookies-alert.show {
    transform: translateY(0);
}

.cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 28px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 32px;
}

.cookies-text {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.cookies-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.cookies-text p {
    color: var(--text-charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.cookies-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.cookies-accept-btn,
.cookies-decline-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-accept-btn {
    background: var(--ocean-blue);
    color: var(--background-pearl);
    border: 2px solid var(--ocean-blue);
}

.cookies-accept-btn:hover {
    background: var(--midnight-purple);
    border-color: var(--midnight-purple);
    transform: translateY(-1px);
}

.cookies-decline-btn {
    background: transparent;
    color: var(--text-charcoal);
    border: 2px solid #e0e0e0;
}

.cookies-decline-btn:hover {
    background: #f5f5f5;
    border-color: #c0c0c0;
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 890px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 21px;
        padding: 18px 21px;
    }

    .cookies-text {
        flex-direction: column;
        gap: 12px;
    }

    .cookies-actions {
        width: 100%;
        justify-content: center;
    }

    .cookies-accept-btn,
    .cookies-decline-btn {
        padding: 14px 28px;
        flex: 1;
        max-width: 140px;
    }
}

@media (max-width: 640px) {
    .cookies-content {
        padding: 16px 18px;
    }

    .cookies-text p {
        font-size: 0.9rem;
    }

    .cookies-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cookies-accept-btn,
    .cookies-decline-btn {
        max-width: none;
        width: 100%;
    }
}

/* Animation for hiding */
@keyframes cookiesFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

.cookies-alert.hiding {
    animation: cookiesFadeOut 0.4s ease-out forwards;
}