/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-light-gray: #F2F2F2;
    --color-medium-light: #A6A6A6;
    --color-medium: #737272;
    --color-medium-dark: #8C7A6B;
    --color-dark: #403D3C;
    --color-darkest: #262322;
    --bg-black: #000000;
    --box-grey: rgba(64, 61, 60, 0.5);
    --text-white: #FFFFFF;
    --hover-blue: #0066FF;
    --hover-green: #006400;
    --hover-offwhite: #F5F5DC;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 80px;
}

/* NAVBAR */
.navbar {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0;
}

.navbar.scrolled .navbar-inner {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    background: #1a1a1a;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    width: 100%;
    max-width: 100%;
    gap: 2rem;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    max-height: 90px;
    height: auto;
    width: auto;
    max-width: 500px;
    margin-right: 0.6rem;
    object-fit: contain;
    display: block;
    background: transparent;
    filter: none;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0.3rem;
    border-radius: 10px;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-text {
    display: none;
}

.logo-dot {
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 0.2rem;
    opacity: 0.85;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 1;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--hover-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a:hover {
    background: rgba(0, 102, 255, 0.1);
    color: var(--hover-blue);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(0, 102, 255, 0.15);
    color: var(--hover-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
    font-weight: 600;
}

.nav-link.active::before {
    width: 80%;
}

.nav-link.active:hover {
    background: rgba(0, 102, 255, 0.2);
    color: var(--hover-blue);
    border-color: var(--hover-blue);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--box-grey);
    color: var(--text-white);
    border: 1px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.back-to-top:hover {
    background: var(--hover-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.back-to-top.visible {
    display: flex;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--box-grey);
    border-top: 4px solid var(--text-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-button {
    background: linear-gradient(135deg, var(--hover-blue) 0%, #0052cc 100%);
    color: var(--text-white);
    border: 2px solid var(--hover-blue);
    padding: 0.65rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #0052cc 0%, var(--hover-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
    border-color: var(--hover-blue);
}

/* HERO SECTIONS */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--bg-black);
    position: relative;
    background-image: url('../images/back white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-black);
    opacity: 0.6;
    z-index: 0;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.tag-pill {
    display: inline-block;
    background: var(--box-grey);
    color: var(--text-white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    border: 1px solid var(--text-white);
}

.highlight {
    color: var(--text-white);
    display: block;
    margin-top: 0.5rem;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 300;
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
    background-image: url('../images/back white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-black);
    opacity: 0.6;
    z-index: 0;
}

.services-section .services-content {
    position: relative;
    z-index: 1;
}

.services-section .services-content {
    position: relative;
    z-index: 1;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-pill {
    display: inline-block;
    background: var(--box-grey);
    color: var(--text-white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    border: 1px solid var(--text-white);
}

.services-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.services-subtitle {
    font-size: 1.1rem;
    text-align: left;
    color: var(--text-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--text-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
    background: var(--box-grey);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    flex-shrink: 0;
    order: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(38, 35, 34, 0.3);
    border-color: var(--color-darkest);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    margin-top: 0;
}

.service-card p {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
    font-weight: 300;
}

/* PROCESS SECTION */
.process-section {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
    background-image: url('../images/back white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-black);
    opacity: 0.6;
    z-index: 0;
}

.process-section .process-content {
    position: relative;
    z-index: 1;
}

.process-section .process-content {
    position: relative;
    z-index: 1;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.process-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--text-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.process-step p {
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 300;
}

.process-buttons {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: var(--bg-black);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-btn {
    background: var(--box-grey);
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--hover-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

/* BUTTONS */
.primary-btn, .secondary-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background: var(--box-grey);
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.primary-btn:hover {
    background: var(--hover-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.secondary-btn:hover {
    background: var(--hover-green);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 100, 0, 0.2);
}

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

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--color-darkest);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--hover-blue);
    border-radius: 2px;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
    position: relative;
}

.footer-col ul li::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--hover-blue);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-col ul li:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-col ul li a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-left: 5px;
    font-weight: 400;
}

.footer-col ul li a:hover {
    color: var(--hover-blue);
    padding-left: 12px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    color: var(--color-darkest);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-social a:hover {
    color: #ffffff;
    background: var(--hover-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    border-color: var(--hover-blue);
}

.copyright {
    text-align: center;
    color: var(--color-medium);
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    font-weight: 400;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* VISION MISSION SECTION */
.vision-mission {
    padding: 80px 0;
    background: var(--bg-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vision-card, .mission-card {
    background: var(--box-grey);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 35, 34, 0.15);
    border-color: var(--color-dark);
}

.vision-card:hover::before, .mission-card:hover::before {
    transform: scaleX(1);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.vision-card p, .mission-card p {
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 300;
}

/* VALUES SECTION */
.values-section {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
    background-image: url('../images/back white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-black);
    opacity: 0.6;
    z-index: 0;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: left;
    padding: 2rem 1.5rem;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--text-white);
    box-shadow: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p {
    color: var(--text-white);
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 300;
}

.values-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
    text-align: center;
    line-height: 1.2;
}

.values-section .section-header h2 .highlight {
    color: var(--text-white);
}

/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    background: var(--bg-black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    color: var(--text-white);
}

.team-member:hover .photo-placeholder {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.position {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 300;
}

.bio {
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 300;
}

/* FOUNDERS NOTE SECTION */
.founders-note {
    padding: 80px 0;
    background: var(--bg-black);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-darkest);
}

.note-content p {
    font-size: 1.1rem;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founders-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-medium-light);
}

.founders-signature p {
    margin-bottom: 0.5rem;
}

.founders-signature strong {
    color: var(--color-darkest);
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--box-grey);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

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

.pricing-card.featured {
    border: 2px solid var(--text-white);
    position: relative;
    background: var(--box-grey);
}

.pricing-card.featured::after {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--box-grey);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-white);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
}

.period {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 300;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-white);
    border-bottom: 1px solid var(--text-white);
    font-weight: 300;
}

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

.plan-btn {
    background: var(--color-darkest);
    color: var(--color-light-gray);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.plan-btn:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(38, 35, 34, 0.3);
}

/* CUSTOM PLAN SECTION */
.custom-plan {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
    background-image: url('../images/back white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-black);
    opacity: 0.6;
    z-index: 0;
}

.custom-plan .container {
    position: relative;
    z-index: 1;
}

.custom-plan .container {
    position: relative;
    z-index: 1;
}

.custom-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.custom-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.custom-content p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-medium-light);
    border-radius: 8px;
    background: var(--color-light-gray);
    color: var(--color-darkest);
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-darkest);
}

.submit-btn {
    background: var(--box-grey);
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 100, 0, 0.4);
}

/* SCHEDULE CALL SECTION */
.schedule-call {
    padding: 80px 0;
    background: var(--color-light-gray);
    text-align: center;
}

.schedule-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-darkest);
}

.schedule-content p {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.schedule-btn {
    background: var(--box-grey);
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.schedule-btn:hover {
    background: var(--hover-offwhite);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(245, 245, 220, 0.4);
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-medium-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--box-grey);
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.benefit-card p {
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 300;
}

/* FEATURES SECTION */
.features-section {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2.5rem 2rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-item p {
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 300;
}

/* PROCESS STEPS SECTION */
.process-steps {
    padding: 80px 0;
    background: var(--bg-black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    padding: 2.5rem 2rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--box-grey);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-card p {
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.step-features {
    list-style: none;
    text-align: left;
}

.step-features li {
    color: var(--text-white);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.step-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-white);
    font-weight: bold;
}

/* PROCESS BENEFITS SECTION */
.process-benefits {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-light-gray);
    border-radius: 16px;
    border: 2px solid var(--color-medium-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 35, 34, 0.15);
    border-color: var(--color-dark);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item .benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--color-darkest);
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--color-light-gray);
    box-shadow: 0 4px 15px rgba(38, 35, 34, 0.2);
    border: 2px solid var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(38, 35, 34, 0.3);
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-darkest);
}

.benefit-item p {
    color: var(--color-dark);
    line-height: 1.6;
}

/* TIMELINE SECTION */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-black);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--text-white);
    opacity: 0.3;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--box-grey);
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.timeline-content {
    background: var(--box-grey);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    margin-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(38, 35, 34, 0.15);
    border-color: var(--color-dark);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-darkest);
}

.timeline-content p {
    color: var(--color-dark);
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: var(--bg-black);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--text-white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--box-grey);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--box-grey);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-white);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* About Preview Section */
.about-preview {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.about-preview p {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    background: var(--box-grey);
    border: 1px solid var(--text-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-logo:hover {
    transform: none;
    border-color: var(--text-white);
    box-shadow: none;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-white);
}

/* Target Audience Section */
.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.audience-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--box-grey);
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: none;
    border-color: var(--text-white);
    box-shadow: none;
}

.audience-card:hover::before {
    transform: scaleX(0);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-white);
    transition: none;
    flex-shrink: 0;
    order: -1;
}

.audience-card:hover .audience-icon {
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    margin-top: 0;
}

.audience-card p {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.testimonial-card {
    background: var(--box-grey);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-white);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 400;
}

.testimonial-author span {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Audio Testimonials Section */
.audio-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1400px;
}

.audio-testimonial-card {
    background: var(--box-grey);
    border: 1px solid var(--text-white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.audio-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-darkest);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.audio-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--hover-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    background: rgba(64, 61, 60, 0.7);
}

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

.audio-testimonial-header {
    margin-bottom: 1.5rem;
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audio-testimonial-name::before {
    content: '🎙️';
    font-size: 1.1rem;
}

.audio-testimonial-role {
    font-size: 0.95rem;
    color: var(--text-white);
    margin: 0;
    font-weight: 300;
}

.audio-player-container {
    width: 100%;
}

.audio-player {
    display: none;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--text-white);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    width: 100%;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
}

.audio-testimonial-card:hover .audio-controls {
    border-color: var(--hover-blue);
    background: rgba(0, 0, 0, 0.4);
}

.audio-play-btn {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 40px;
}

.audio-play-btn:hover {
    color: var(--hover-blue);
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--hover-blue);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.audio-testimonial-card.playing .audio-play-btn {
    background: rgba(0, 102, 255, 0.3);
    border-color: var(--hover-blue);
    color: var(--hover-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.6);
    }
}

.audio-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 400;
    min-width: 80px;
    font-family: 'Courier New', monospace;
}

.audio-separator {
    color: var(--text-white);
    opacity: 0.7;
}

.audio-progress-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.audio-progress-bar {
    width: 100%;
    height: 5px;
    background: var(--text-white);
    opacity: 0.3;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    flex: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}

.audio-progress-bar:hover {
    opacity: 0.5;
    height: 6px;
}

.audio-progress-fill {
    height: 100%;
    background: var(--hover-blue);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

.audio-volume-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.audio-volume-btn:hover {
    color: var(--hover-blue);
    transform: scale(1.1);
    background: rgba(0, 102, 255, 0.1);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.portfolio-item {
    background: var(--box-grey);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-medium-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--text-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover::before {
    transform: scaleX(1);
}

.portfolio-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    margin-top: 0;
}

.portfolio-item p {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
    font-weight: 300;
}

/* Quote Form Section */
.quote-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.quote-form {
    background: var(--box-grey);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 400;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--text-white);
    border-radius: 8px;
    background: var(--box-grey);
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff6b6b;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--box-grey);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        padding: 2rem 1.5rem;
    }
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--box-grey);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    position: relative;
    background-image: url('../images/back white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--box-grey);
    opacity: 0.6;
    z-index: 0;
    border-radius: 16px;
}

.service-detail-card .service-detail-header,
.service-detail-card .service-detail-content {
    position: relative;
    z-index: 1;
}

.service-detail-card .service-detail-header,
.service-detail-card .service-detail-content {
    position: relative;
    z-index: 1;
}

.service-detail-card:hover {
    border-color: var(--color-dark);
    box-shadow: 0 15px 40px rgba(38, 35, 34, 0.1);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-medium-light);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.service-short-title {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 300;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.service-benefits h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.8rem 0;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 300;
}

.service-benefits li i {
    color: var(--text-white);
    font-size: 1.2rem;
}

/* Custom Package Features */
.custom-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.custom-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--box-grey);
    border: 1px solid var(--text-white);
    border-radius: 8px;
}

.custom-feature-item i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.custom-feature-item span {
    color: var(--text-white);
    font-weight: 300;
}

.note-box {
    background: var(--box-grey);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.note-box i {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.note-box h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.note-box p {
    color: var(--text-white);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

.plan-subtitle {
    font-size: 1rem;
    color: var(--color-medium);
    margin-top: 0.5rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--box-grey);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-white);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-card p {
    color: var(--text-white);
    font-weight: 300;
}

.contact-card a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--hover-blue);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-link-card {
    background: var(--box-grey);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.social-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-white);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 70px;
    height: 70px;
    background: var(--box-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.social-link-card h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.social-link-card p {
    color: var(--text-white);
    font-weight: 300;
}

.booking-section {
    margin-top: 3rem;
}

.booking-content {
    background: var(--box-grey);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--text-white);
    text-align: center;
}

.booking-content h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.booking-content p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar-inner {
        width: 100%;
        padding: 0.7rem 1.8rem;
        gap: 1.5rem;
        border-radius: 0;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.9rem;
        color: #ffffff;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .navbar-inner {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.6rem 1.2rem;
        width: 100%;
        border-radius: 0;
        background: #1a1a1a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        text-align: center;
        width: 100%;
        padding: 0.8rem 1rem;
        color: #ffffff;
    }
    
    .cta-button {
        order: 2;
        flex: 1;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

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

    .values-section .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 900px) {
    .audio-testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 100px;
    }
    
    .audio-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-inner {
        width: 98%;
        padding: 0.6rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-dot {
        width: 0.65em;
        height: 0.65em;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .footer-col {
        min-width: 120px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .values-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .audio-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .audio-controls {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.7rem 0.8rem;
    }

    .audio-time {
        min-width: 70px;
        font-size: 0.85rem;
    }

    .audio-progress-container {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card,
    .value-card,
    .benefit-card,
    .feature-item {
        padding: 1.5rem;
    }
    
    .navbar-inner {
        width: 98%;
        padding: 0.6rem 1rem;
        border-radius: 10px;
    }
    
    .nav-links a {
        font-size: 0.88rem;
        padding: 0.35rem 0.8rem;
        color: #ffffff;
    }
    
    .cta-button {
        font-size: 0.92rem;
        padding: 0.55rem 1.2rem;
    }
    
    .logo-dot {
        width: 0.65em;
        height: 0.65em;
    }
    
    .audio-testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .audio-testimonial-name {
        font-size: 1.1rem;
    }
    
    .audio-testimonial-role {
        font-size: 0.85rem;
    }
    
    .audio-controls {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }
    
    .audio-time {
        font-size: 0.8rem;
        min-width: 60px;
    }
}

/* Get Quote Section */
.get-quote-section {
    padding: 60px 20px;
    background: var(--bg-black);
}

.get-quote-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.get-quote-section .section-header p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.quote-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--box-grey);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

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

.form-group label {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--text-white);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-medium-light);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(166, 166, 166, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-darkest);
    color: var(--text-white);
    padding: 8px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.submit-btn,
.calendly-btn {
    flex: 1;
    min-width: 180px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn {
    background: var(--color-darkest);
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.submit-btn:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.calendly-btn {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.calendly-btn:hover {
    background: var(--text-white);
    color: var(--color-darkest);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
    display: block;
}

/* Responsive Design for Quote Form */
@media (max-width: 768px) {
    .get-quote-section {
        padding: 50px 15px;
    }
    
    .quote-form-container {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn,
    .calendly-btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .get-quote-section {
        padding: 40px 15px;
    }
    
    .quote-form-container {
        padding: 20px 15px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn,
    .calendly-btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
}
