/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f4097e;
    --primary-dark: #652f81;
    --secondary-color: #652f81;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Header logo — enterprise bar (compact wordmark, cf. big-consulting site patterns) */
    --header-logo-height: 36px;
    /* Tight SVG viewBox (~6.6:1); allow full width at set height */
    --header-logo-max-width: 260px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    width: fit-content;
    max-width: min(100%, var(--header-logo-max-width));
}

.logo-img {
    display: block;
    height: var(--header-logo-height);
    width: auto;
    max-width: 60%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 0;
}

/* Stable underline for active/hover (prevents layout shift) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-dropdown:hover > .nav-link::after,
.nav-dropdown:focus-within > .nav-link::after {
    transform: scaleX(1);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.75rem 0;
    min-width: 240px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--bg-white);
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(244, 9, 126, 0.08) 0%, rgba(244, 9, 126, 0.03) 100%);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(3px);
}

.dropdown-menu a:first-child {
    margin-top: 0.25rem;
}

.dropdown-menu a:last-child {
    margin-bottom: 0.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
}

.language-selector {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.language-selector:hover,
.language-selector:focus {
    border-color: var(--primary-color);
    outline: none;
}

.nav-icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(417deg, #f4097e 0%, #652f81 65%);
    color: white;
    padding: 3.5rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-graphic {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrows-graphic {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

/* Content Blocks Section */
.content-blocks {
    padding: 3rem 0;
    background: var(--bg-light);
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.content-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background:
        radial-gradient(1200px 300px at 50% 0%, rgba(244, 9, 126, 0.06), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
    overflow: hidden;
}

.partners-subtitle {
    text-align: center;
    color: var(--text-gray, #6b7280);
    font-size: 1.05rem;
    margin: -1rem 0 3rem;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: partners-scroll 36s linear infinite;
    will-change: transform;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    width: 260px;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(417deg, #f4097e 0%, #652f81 65%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(101, 47, 129, 0.18);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(101, 47, 129, 0.28);
}

.partner-logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s ease;
}

.partner-logo:hover img {
    transform: scale(1.04);
}

@keyframes partners-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
    }
}

@media (max-width: 768px) {
    .partners-section { padding: 3.5rem 0; }
    .partners-track { gap: 1.5rem; animation-duration: 28s; }
    .partner-logo {
        height: 110px;
        width: 220px;
        padding: 1rem 1.25rem;
    }
    .partner-logo img {
        max-height: 72px;
        max-width: 170px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 28px;
    width: auto;
    max-width: min(100%, 200px);
    object-fit: contain;
    object-position: left center;
    opacity: 0.95;
    /* Black logo on dark footer: light chip keeps transparent SVG readable */
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
    box-sizing: content-box;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-graphic {
        order: -1;
    }

    .abstract-graphic {
        max-width: 300px;
        height: 300px;
    }

    .blocks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
        align-items: flex-start;
        padding-left: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        margin-left: 1rem;
        width: calc(100% - 2rem);
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-radius: 8px;
        transition: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu a:hover {
        transform: none;
        background: rgba(244, 9, 126, 0.1);
    }

    /* Mobile dropdown arrow indicator - rotate existing chevron */
    .nav-dropdown .nav-link i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .nav-actions {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .hero {
        padding: 2.5rem 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-card {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .blocks-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Overview Section */
.overview-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.overview-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.overview-text:last-child {
    margin-bottom: 0;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.expertise-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.expertise-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Modules Table */
.modules-table {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.module-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.module-row:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.module-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.module-desc {
    color: var(--text-gray);
    line-height: 1.7;
}

/* AI Features Section */
.ai-features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Libraries Section */
.libraries-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.libraries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.library-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.library-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

/* Integrations Section */
.integrations-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.integrations-content {
    max-width: 900px;
    margin: 0 auto;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.integration-list li {
    padding: 1rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.integration-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Client Value Section */
.client-value-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .module-row {
        grid-template-columns: 1fr;
    }

    .libraries-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Hero (for About, Services, Solutions, Contact pages) */
.page-hero {
    background: linear-gradient(417deg, #f4097e 0%, #652f81 65%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}


.page-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
}

/* About Page Styles */
.about-content {
    padding: 3rem 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-text {
    z-index: 2;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image .abstract-graphic {
    width: 100%;
    max-width: 350px;
    height: 350px;
}

.grc-platform-logo {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    object-fit: contain;
}

.values-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-item {
    text-align: center;
    padding: 1.5rem;
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.team-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Services Page Styles */
.services-content {
    padding: 3rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card-large {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.service-icon-large {
    font-size: 3.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-card-large h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.service-card-large p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.additional-services {
    padding: 3rem 0;
    background: var(--bg-white);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.additional-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.additional-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.additional-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Solutions Page Styles */
.solutions-content {
    padding: 3rem 0;
    background: var(--bg-light);
}

.solutions-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card-featured {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.solution-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.solution-card-featured h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.solution-card-featured p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.solution-categories {
    padding: 3rem 0;
    background: var(--bg-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.category-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-content {
    padding: 3rem 0;
    background: var(--bg-light);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.contact-form-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header .section-heading {
    margin-bottom: 0.75rem;
    font-size: 2.25rem;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 9, 126, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(244, 9, 126, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 9, 126, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(244, 9, 126, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(244, 9, 126, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-full {
    width: 100%;
}

/* Send Message Button Specific Styles */
.contact-form .btn-primary {
    background: linear-gradient(135deg, #f4097e 0%, #652f81 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.125rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(244, 9, 126, 0.35);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #652f81 0%, #f4097e 100%);
    box-shadow: 0 8px 30px rgba(244, 9, 126, 0.5);
    transform: translateY(-3px);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(244, 9, 126, 0.4);
}

.contact-form .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 9, 126, 0.3);
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-form .btn-primary.loading {
    pointer-events: none;
}

.contact-form .btn-primary i {
    margin-right: 0.5rem;
}

/* Form Success/Error Messages */
.form-success-message,
.form-error-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease-out;
    line-height: 1.6;
}

.form-success-message {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    border: 2px solid #28a745;
    color: #155724;
}

.form-success-message i {
    font-size: 1.25rem;
    color: #28a745;
}

.form-error-message {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(200, 35, 51, 0.1) 100%);
    border: 2px solid #dc3545;
    color: #721c24;
}

.form-error-message i {
    font-size: 1.25rem;
    color: #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.social-link-large {
    color: var(--text-gray);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.social-link-large:hover {
    color: white;
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive adjustments for new pages */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact-form-section {
        padding: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-header .section-heading {
        font-size: 1.875rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2rem;
    }
}
