/*
Theme Name: ORA-TECH Corporate Theme
Theme URI: https://ora-tech.com
Author: ORA-TECH
Author URI: https://ora-tech.com
Description: A modern, minimalist corporate WordPress theme for IT consulting firms. Features include a stunning hero section, services grid, team showcase, and elegant footer. Built with Tailwind CSS.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oratech
Tags: one-column, custom-menu, featured-images, full-width-template, custom-logo, translation-ready
*/

/* ==========================================================================
   ROOT VARIABLES
   ========================================================================== */
:root {
    --color-cyan-400: #22d3ee;
    --color-cyan-600: #0891b2;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-900: #0f172a;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
}

::selection {
    background: black;
    color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-slate-900);
    background: white;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.9;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

.hover-reveal-line {
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.group:hover .hover-reveal-line {
    width: 100%;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-navigation {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
    padding: 2rem 0;
}

.site-navigation.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--color-slate-100);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   LOGO STYLING (Single logo with CSS filter)
   ========================================================================== */
.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: brightness(0) invert(1); /* Makes black logo appear white */
}

.site-navigation.scrolled .site-logo img {
    filter: brightness(0); /* Makes logo black */
}

/* ==========================================================================
   NAV MENU
   ========================================================================== */
.nav-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-cyan-400);
}

.scrolled .nav-menu a {
    color: var(--color-slate-500);
}

.scrolled .nav-menu a:hover {
    color: black;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scrolled .nav-contact {
    color: black;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.scrolled .mobile-menu-toggle {
    color: black;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--color-cyan-400);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: black;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: contrast(1.25) saturate(2) brightness(1.1);
    transform: scale(1.05);
    animation: pulse 4s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.7) 40%, transparent 70%);
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, transparent, transparent);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    padding-top: 5rem;
    width: 100%;
}

.hero-inner {
    max-width: 48rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    margin-top: 0;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-gradient {
    background: linear-gradient(to right, #cffafe, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.5));
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-slate-300);
    max-width: 32rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Hero Stats Ticker */
.hero-ticker {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    display: none;
}

@media (min-width: 1024px) {
    .hero-ticker {
        display: block;
    }
}

.hero-ticker-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.hero-ticker-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    flex-grow: 1;
}

.hero-ticker-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-ticker-link:hover {
    color: var(--color-cyan-400);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: var(--color-cyan-400);
    color: black;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* ==========================================================================
   PERSPECTIVES SECTION
   ========================================================================== */
.perspectives-section {
    padding: 8rem 0;
    background: white;
}

.perspectives-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-slate-100);
}

.perspectives-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
}

.perspectives-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-400);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .perspectives-link {
        display: flex;
    }
}

.perspectives-link:hover {
    color: black;
}

.perspectives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 2rem;
}

@media (min-width: 768px) {
    .perspectives-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem 2rem;
    }
}

/* Story Card */
.story-card {
    cursor: pointer;
}

.story-card-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 1.5rem;
    background: var(--color-slate-100);
    position: relative;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.5s ease;
}

.story-card:hover .story-card-image-overlay {
    background: transparent;
}

.story-card-category {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-cyan-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.story-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-slate-900);
    transition: color 0.3s ease;
    margin: 0;
}

.story-card:hover .story-card-title {
    color: var(--color-cyan-600);
}

.story-card-line {
    height: 1px;
    background: var(--color-slate-200);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.story-card-line-inner {
    position: absolute;
    inset: 0;
    background: black;
}

/* ==========================================================================
   EXPERTISE SECTION
   ========================================================================== */
.expertise-section {
    background: black;
    color: white;
    padding: 8rem 0;
}

.expertise-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 6rem;
    letter-spacing: -0.025em;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Tile */
.service-tile {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-tile:hover {
    background: white;
    color: black;
}

.service-tile-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 3rem;
}

.service-tile-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
}

.service-tile-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.service-tile:hover .service-tile-footer {
    opacity: 1;
}

.service-tile-sub {
    font-size: 0.875rem;
    font-family: monospace;
    letter-spacing: 0.05em;
}

.service-tile-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.5s ease;
}

.service-tile:hover .service-tile-icon {
    transform: translate(4px, -4px);
}

/* ==========================================================================
   LEGACY SECTION
   ========================================================================== */
.legacy-section {
    padding: 8rem 0;
    background: var(--color-slate-50);
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.legacy-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-slate-400);
    margin-bottom: 2rem;
    display: block;
}

.legacy-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

@media (min-width: 1024px) {
    .legacy-title {
        font-size: 3.75rem;
    }
}

.legacy-description {
    font-size: 1.25rem;
    color: var(--color-slate-500);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.legacy-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
}

.legacy-button-line {
    width: 3rem;
    height: 1px;
    background: black;
    transition: width 0.3s ease;
}

.legacy-button:hover .legacy-button-line {
    width: 5rem;
}

.legacy-image-wrapper {
    position: relative;
}

.legacy-image {
    aspect-ratio: 3 / 4;
    background: var(--color-slate-200);
    overflow: hidden;
}

@media (min-width: 768px) {
    .legacy-image {
        aspect-ratio: 1 / 1;
    }
}

.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.7s ease;
}

.legacy-image-wrapper:hover img {
    filter: grayscale(0);
}

.legacy-quote {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    background: white;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: none;
}

@media (min-width: 768px) {
    .legacy-quote {
        display: block;
    }
}

.legacy-quote p {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-slate-900);
    line-height: 1.3;
    margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: white;
    color: var(--color-slate-900);
    padding: 5rem 0;
    border-top: 1px solid var(--color-slate-100);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-brand img {
    height: 1.5rem;
    width: auto;
    filter: grayscale(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-slate-400);
    font-size: 0.875rem;
    max-width: 18rem;
    margin: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media (min-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 8rem;
    }
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-400);
    margin-bottom: 0.5rem;
}

.footer-nav-column a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-nav-column a:hover {
    color: var(--color-cyan-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-slate-400);
    font-family: monospace;
    border-top: 1px solid var(--color-slate-100);
    padding-top: 2rem;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   WORDPRESS SPECIFIC STYLES
   ========================================================================== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.group {
    position: relative;
}

/* ==========================================================================
   SERVICES PAGE STYLES - ORA-TECH STYLE
   ========================================================================== */

/* Services Hero */
.services-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://ora-tech.com/assets/img/service-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-hero-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.services-hero-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Services Grid */
.services-grid-section {
    background: #f5f5f5;
    padding: 0 0 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Service Card */
.service-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
    width: 100%;
}

.service-card-title {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .service-card-title {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .service-card-title {
        font-size: 1.125rem;
    }
}

/* Main Service Section */
.service-main-section {
    background: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.service-main-title-box {
    display: inline-block;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.service-main-title-box h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .service-main-title-box h2 {
        font-size: 2.5rem;
    }
}

.service-main-divider {
    width: 60px;
    height: 3px;
    background: #333;
    margin: 0 auto 2rem;
}

.service-main-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Service Subsections */
.service-subsection {
    padding: 4rem 0;
}

.service-subsection-light {
    background: white;
}

.service-subsection-dark {
    background: #4a4a4a;
    color: white;
}

.service-subsection-divider {
    width: 60px;
    height: 3px;
    background: #333;
    margin: 0 auto 3rem;
}

.service-subsection-dark .service-subsection-divider {
    background: #888;
}

.service-subsection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .service-subsection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.service-subsection-reverse {
    direction: ltr;
}

@media (min-width: 768px) {
    .service-subsection-reverse {
        direction: rtl;
    }
    
    .service-subsection-reverse > * {
        direction: ltr;
    }
}

.service-subsection-content {
    order: 2;
}

@media (min-width: 768px) {
    .service-subsection-content {
        order: unset;
    }
}

.service-subsection-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
    color: #333;
}

@media (min-width: 768px) {
    .service-subsection-title {
        font-size: 2rem;
    }
}

.service-subsection-dark .service-subsection-title {
    color: white;
}

.service-subsection-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 1.5rem;
    text-align: justify;
}

.service-subsection-dark .service-subsection-content p {
    color: rgba(255, 255, 255, 0.85);
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-subsection-dark .service-list li {
    color: rgba(255, 255, 255, 0.85);
}

.service-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    top: 0;
    color: #888;
    font-size: 0.75rem;
}

.service-subsection-dark .service-list li::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Subsection Image */
.service-subsection-image {
    order: 1;
}

@media (min-width: 768px) {
    .service-subsection-image {
        order: unset;
    }
}

.service-subsection-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    filter: sepia(30%) saturate(150%) hue-rotate(-20deg);
    transition: filter 0.3s ease;
}

.service-subsection-image:hover img {
    filter: sepia(0%) saturate(100%) hue-rotate(0deg);
}

/* Red/Pink tint effect for images in dark sections */
.service-subsection-dark .service-subsection-image img {
    filter: sepia(40%) saturate(200%) hue-rotate(-30deg) brightness(0.9);
}

.service-subsection-dark .service-subsection-image:hover img {
    filter: sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
    text-align: center;
}

.services-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .services-cta-title {
        font-size: 2.5rem;
    }
}

.services-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-cyan-400);
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-cyan-400);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background: transparent;
    color: var(--color-cyan-400);
}

/* Smooth scroll offset for fixed header */
[id] {
    scroll-margin-top: 100px;
}