/* =====================
   RESET & BASE STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5a6b79;
    --primary-accent: #d89e5f;
    --secondary-color: #8cc9b9;
    --accent-color: #f5b041;
    --danger-color: #ef4444;
    --text-dark: #525b68;
    --text-light: #7a8896;
    --text-lighter: #a8b4c0;
    --bg-white: #ffffff;
    --bg-light: #fafaf8;
    --bg-darker: #f4f1eb;
    --border-color: #ebe6de;
    --warmth-color: #daa989;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    font-weight: 600;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:active {
    opacity: 0.9;
}

.logo svg {
    display: none;
}

.logo-initials {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #5a6b79 0%, #d89e5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text p {
    margin: 0;
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
}

.logo-text p span {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-accent);
    font-size: 15px;
}

.contact-info i {
    font-size: 18px;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5a68 50%, var(--warmth-color) 100%);
    background-attachment: fixed;
    color: white;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 174, 134, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.08;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-accent);
    top: -50px;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -100px;
    right: 10%;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    top: 50%;
    right: 5%;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.hero-content-centered {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.15;
    color: white;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.hero-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-accent);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-icon-box:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(216, 158, 95, 0.25);
}

.hero-icon-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: var(--primary-accent);
    color: white;
    padding: 16px 48px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-6px);
    background: #c68c4f;
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 18px 56px;
    font-size: 17px;
}

/* =====================
   INTRODUCTION SECTION
   ===================== */
.introduction {
    padding: 100px 24px;
    background: var(--bg-white);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 3px;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-content p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* =====================
   FOR WHO SECTION
   ===================== */
.for-who {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.for-who h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.25rem;
}

.for-who h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-item {
    background: var(--bg-white);
    padding: 45px 30px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-item:hover {
    border-color: var(--primary-accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.who-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--warmth-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 8px 20px rgba(216, 158, 95, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.who-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.who-item:hover .who-icon {
    transform: scale(1.1) rotateZ(-5deg);
    box-shadow: 0 12px 28px rgba(216, 158, 95, 0.35);
}

.who-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.who-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* =====================
   ENGAGEMENT SECTION
   ===================== */
.engagement {
    padding: 100px 24px;
    background: var(--bg-white);
}

.engagement h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.25rem;
}

.engagement h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.engagement-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 50px 35px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engagement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

/* Engagement icons - merged with glassmorphism style above */
.engagement-icon {
    display: none;
}

.engagement-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.engagement-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3e4c54 100%);
    color: white;
    padding: 90px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
    font-weight: 800;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 45px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.92);
}

/* =====================
   CONTACT QUICK SECTION
   ===================== */
.contact-quick {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.contact-quick h2 {
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.25rem;
}

.contact-quick h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-method:hover {
    border-color: var(--primary-accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
}

.contact-icon svg {
    width: 52px;
    height: 52px;
}

.contact-method:hover .contact-icon svg {
    filter: drop-shadow(0 8px 16px rgba(216, 158, 95, 0.25));
}

.contact-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-method p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-method a {
    color: var(--primary-accent);
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.contact-method a:hover {
    opacity: 0.8;
}

.small {
    font-size: 13px;
    margin-top: 6px;
    color: var(--text-lighter);
    font-weight: 500;
}

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a5a68 50%, var(--warmth-color) 100%);
    background-attachment: fixed;
    color: white;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 174, 134, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-main {
    padding: 80px 24px;
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.about-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
}

.expertise-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-accent);
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.expertise-list i {
    color: var(--secondary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 6px solid var(--primary-accent);
    color: white;
}

.mission-quote p {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.values-section {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 2px solid var(--border-color);
}

.values-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 17px;
    margin-top: 40px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 52px;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================
   SERVICES DETAIL SECTION
   ===================== */
.services-detail {
    padding: 80px 24px;
    background: var(--bg-light);
}

.service-detail-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 35px;
    border-left: 5px solid var(--primary-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-detail-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: white;
    border-left: 5px solid var(--accent-color);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.service-detail-icon {
    font-size: 48px;
    color: var(--primary-accent);
    flex-shrink: 0;
}

.service-detail-card.highlight .service-detail-icon {
    color: var(--accent-color);
}

.service-detail-card h2 {
    font-size: 22px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-card.highlight h2 {
    color: white;
}

.service-detail-list {
    list-style: none;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 15px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.service-detail-card.highlight .service-detail-list li {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.service-detail-list i {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.service-detail-card.highlight .service-detail-list i {
    color: var(--accent-color);
}

.flexibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.flexibility-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 25px 18px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flexibility-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.flexibility-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
}

.flexibility-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.how-it-works {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid var(--border-color);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-vertical {
    max-width: 750px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
    position: relative;
}

.process-item:not(:last-child)::after {
    display: none;
}

.process-marker {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.process-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.process-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================
   PRICING SECTION
   ===================== */
.pricing-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.pricing-intro h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.pricing-intro p {
    color: var(--text-light);
    font-size: 17px;
    margin-top: 30px;
    font-weight: 500;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 100px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px 12px 0 0;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: white;
    border: 2px solid var(--primary-accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    padding-top: 45px;
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(216, 158, 95, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-card.featured .pricing-header h3 {
    color: white;
}

.price {
    font-size: 28px;
    color: var(--primary-accent);
    font-weight: 800;
}

.pricing-card.featured .price {
    color: var(--accent-color);
}

.pricing-description {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 14px 0;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-weight: 700;
}

.pricing-card.featured .pricing-features i {
    color: var(--accent-color);
}

.pricing-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-accent);
    border: 2px solid var(--primary-accent);
    border-radius: 8px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    width: 100%;
}

.pricing-btn:hover {
    background: #c68c4f;
    border-color: #c68c4f;
}

.pricing-btn.primary {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
}

.pricing-btn.primary:hover {
    background: #c68c4f;
    border-color: #c68c4f;
}

/* Packages */
.packages {
    margin-bottom: 100px;
}

.packages h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.packages h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
    margin: 16px auto 0;
}

.packages-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-lg);
}

.package-card h4 {
    font-size: 19px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

.package-price {
    font-size: 36px;
    color: var(--primary-accent);
    font-weight: 800;
    margin-bottom: 10px;
}

.package-saving {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-accent);
    border-radius: 8px;
    color: white;
    background: var(--primary-accent);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    width: 100%;
}

.btn-outline:hover {
    background: #c68c4f;
    border-color: #c68c4f;
}

.custom-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 12px;
    margin-bottom: 100px;
    border-left: 6px solid var(--accent-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.quote-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
}

.quote-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.quote-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
}

.quote-list i {
    color: var(--accent-color);
    flex-shrink: 0;
    font-size: 18px;
}

.pricing-faq {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid var(--border-color);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-main {
    padding: 80px 24px;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

/* Info Box */
.contact-info-section {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.contact-method-icon {
    display: none;
}

/* Contact page icons use glassmorphism style */
.contact-icon-glass {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-accent);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-icon-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px 0 rgba(216, 158, 95, 0.25);
    transform: translateY(-4px) scale(1.05);
}

.contact-method-content {
    text-align: left;
    flex: 1;
}

.contact-method-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-method-content p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.contact-method-content a {
    color: var(--primary-accent);
    font-weight: 700;
}

.contact-method-content a:hover {
    opacity: 0.8;
}

.small {
    font-size: 13px;
    margin-top: 6px;
    color: var(--text-lighter);
    font-weight: 500;
}

.contact-tagline {
    margin-top: 45px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #334155 100%);
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    color: white;
}

.contact-tagline p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: white;
    font-weight: 500;
}

/* Form Section */
.contact-form-section {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-section h2 {
    font-size: 24px;
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--bg-light);
}

.submit-button {
    background: var(--primary-accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button:hover {
    transform: translateY(-2px);
    background: #c68c4f;
}

.form-note {
    font-size: 13px;
    color: var(--text-lighter);
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
}

.form-group.checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
}

/* FAQ */
.contact-faq {
    padding: 80px 24px;
    background: var(--bg-white);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact-faq h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.faq-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-lg);
}

.faq-card h4 {
    font-size: 17px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 50%, #334155 100%);
    color: white;
    padding: 60px 24px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 50px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 1280px;
    margin: 0 auto;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .navbar .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 24px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h2 {
        font-size: 2.25rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-photo-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .hero-content > p {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .page-hero {
        padding: 60px 24px;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .introduction,
    .for-who,
    .engagement,
    .contact-quick {
        padding: 60px 24px;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .engagement-grid,
    .values-grid,
    .contact-quick-info,
    .pricing-cards,
    .package-grid,
    .faq-grid,
    .services-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .footer-content {
        gap: 30px;
    }

    .process-item {
        gap: 20px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .custom-quote {
        padding: 40px 25px;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .cta-section,
    .about-main,
    .services-detail,
    .pricing-section,
    .contact-main {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.5rem; }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .cta-button,
    .submit-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .process-item::after {
        display: none;
    }

    .hero,
    .cta-section,
    .page-hero {
        padding: 40px 20px;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .contact-method-item {
        flex-direction: column;
        gap: 15px;
    }
}

/* =====================
   GLASSMORPHISM ICONS
   ===================== */

/* Base glassmorphism style for icons */
.who-icon-glass,
.engagement-icon-glass,
.contact-icon-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 32px;
    color: var(--primary-accent);
}

.who-icon-glass:hover,
.engagement-icon-glass:hover,
.contact-icon-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px 0 rgba(216, 158, 95, 0.25);
    transform: translateY(-4px) scale(1.05);
}

/* Font Awesome icon styling inside glass containers */
.who-icon-glass i,
.engagement-icon-glass i,
.contact-icon-glass i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Alternative color variations for different sections */
.who-icon-glass:nth-child(1) { --icon-color: #d89e5f; }
.who-icon-glass:nth-child(2) { --icon-color: #78a87f; }
.who-icon-glass:nth-child(3) { --icon-color: #f5b041; }
.who-icon-glass:nth-child(4) { --icon-color: #d89e5f; }

.engagement-icon-glass:nth-child(1) { --icon-color: #f5b041; }
.engagement-icon-glass:nth-child(2) { --icon-color: #4f46e5; }
.engagement-icon-glass:nth-child(3) { --icon-color: #10b981; }
.engagement-icon-glass:nth-child(4) { --icon-color: #f97316; }

.contact-icon-glass:nth-child(1) { --icon-color: #d89e5f; }
.contact-icon-glass:nth-child(2) { --icon-color: #3b82f6; }
.contact-icon-glass:nth-child(3) { --icon-color: #10b981; }

/* =====================
   SERVICE PAGE STYLES
   ===================== */

.service-icon-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    font-size: 40px;
    color: var(--primary-accent);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.service-icon-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

.service-icon-glass.highlight-icon {
    background: linear-gradient(135deg, rgba(216, 158, 95, 0.15), rgba(245, 176, 65, 0.1));
    color: var(--accent-color);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.service-header-content {
    flex: 1;
}

.service-detail-header h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.service-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.service-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(216, 158, 95, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
    margin-bottom: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:hover {
    border-color: rgba(216, 158, 95, 0.4);
    box-shadow: 0 12px 48px rgba(31, 38, 135, 0.12);
    transform: translateY(-4px);
}

.service-detail-card.highlight {
    background: linear-gradient(135deg, rgba(216, 158, 95, 0.08) 0%, rgba(245, 176, 65, 0.05) 100%);
    border-color: rgba(216, 158, 95, 0.3);
}

.service-detail-card.highlight .service-detail-header h2 {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-accent);
}

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

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0 12px 8px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(216, 158, 95, 0.1);
}

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

.service-detail-list i {
    color: var(--primary-accent);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.flexibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.flexibility-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(216, 158, 95, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(8px);
}

.flexibility-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(216, 158, 95, 0.05), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flexibility-item:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(216, 158, 95, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(216, 158, 95, 0.15);
}

.flexibility-item:hover::after {
    opacity: 1;
}

.flexibility-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 12px;
}

.flexibility-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.flexibility-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.how-it-works {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(216, 158, 95, 0.2);
}

.how-it-works h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
}

.process-vertical {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.process-vertical::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-accent) 0%, transparent 100%);
    z-index: 1;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 1;
    text-align: center;
}

.process-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(216, 158, 95, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
    border: 3px solid var(--bg-light);
}

.process-item:hover .process-marker {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(216, 158, 95, 0.5);
}

.process-content {
    flex: 1;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-content h4 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.process-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.process-item:hover .process-content h4 {
    color: var(--primary-accent);
}

/* Responsive for services page */
@media (max-width: 768px) {
    .service-detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .service-icon-glass {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }

    .service-detail-card {
        padding: 25px;
    }

    .flexibility-grid {
        grid-template-columns: 1fr;
    }

    .process-vertical {
        flex-direction: column;
        gap: 40px;
    }

    .process-vertical::before {
        display: none;
    }

    .process-item {
        align-items: flex-start;
    }

    .process-marker {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .process-content {
        text-align: left;
        min-height: auto;
    }

    .how-it-works h2 {
        font-size: 26px;
    }
}
