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

body {
    font-family: "DM Sans", sans-serif;
    background-color: rgb(11, 12, 14);
    color: rgba(246, 243, 240, 0.88);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Page Wrapper */
.page-wrap {
    width: 100%;
    overflow: clip;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
}

.header.scrolled {
    padding: 12px 0;
    background-color: transparent;
    backdrop-filter: blur(20px);
    box-shadow: none;
}

/* Navbar Wrapper */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-wrapper.scrolled {
    padding: 12px 0;
}

.navbar {
    backdrop-filter: blur(16px);
    background-color: transparent;
    border: 1px solid rgba(246, 243, 240, 0.1);
    border-radius: 16px;
    padding: 8px 12px;
    position: relative;
    max-width: 800px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .navbar {
    background-color: transparent;
    border-color: rgba(246, 243, 240, 0.15);
    box-shadow: none;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 85, 254, 0.3);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    transition: transform 0.3s ease;
}

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

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(246, 243, 240, 0.88);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 243, 240, 0.08), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: rgb(246, 243, 240);
}

.nav-link.active {
    color: rgb(246, 243, 240);
}

.nav-link-text {
    position: relative;
    z-index: 1;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons */
a.btn, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

a.btn-primary, .btn-primary {
    background: rgb(0, 85, 254);
    color: rgb(246, 243, 240);
    border-color: rgb(0, 85, 254);
    box-shadow: 0px 4px 20px rgba(0, 85, 254, 0.4);
}

a.btn-primary::before, .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

a.btn-primary:hover::before, .btn-primary:hover::before {
    left: 100%;
}

a.btn-primary:hover, .btn-primary:hover {
    box-shadow: 0px 8px 40px rgba(0, 85, 254, 0.6);
    transform: translateY(-2px);
    background: rgb(53, 120, 255);
}

a.btn-primary:active, .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0px 4px 20px rgba(0, 85, 254, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 85, 254, 0.8), rgba(53, 120, 255, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

a.btn-primary:hover .btn-bg, .btn-primary:hover .btn-bg {
    opacity: 1;
}

a.btn-secondary, .btn-secondary {
    background-color: transparent;
    color: rgb(246, 243, 240);
    border-color: rgba(246, 243, 240, 0.2);
}

a.btn-secondary:hover, .btn-secondary:hover {
    background-color: rgba(246, 243, 240, 0.08);
    border-color: rgba(246, 243, 240, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: rgb(246, 243, 240);
    display: block;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-btn:hover .hamburger-line {
    background-color: rgb(0, 85, 254);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 80px 40px 40px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 400px;
}

.mobile-nav-item {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-link {
    display: block;
    padding: 20px 28px;
    font-size: 24px;
    font-weight: 600;
    color: rgba(246, 243, 240, 0.88);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.08);
}

.mobile-nav-link:hover {
    background: rgba(0, 85, 254, 0.15);
    color: rgb(0, 85, 254);
    border-color: rgba(0, 85, 254, 0.3);
    transform: translateX(10px);
}

.mobile-contact-btn {
    background: linear-gradient(135deg, rgb(0, 85, 254), rgb(53, 120, 255));
    color: rgb(246, 243, 240);
    border-color: rgb(0, 85, 254);
    margin-top: 20px;
}

.mobile-contact-btn:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 85, 254, 0.5);
}

/* Contact Popup */
.popup-contact {
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    background-color: rgba(246, 243, 240, 0.04);
    z-index: 9999;
    padding: 48px;
}

.popup-contact.active {
    display: flex;
}

.form-block-contact {
    position: relative;
    background-color: rgb(255, 255, 255);
    color: rgba(11, 12, 14, 0.88);
    padding: 32px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Close Button */
.popup-close-button {
    position: absolute;
    top: 16px;
    right: 32px;
    width: 24px;
    height: 24px;
    background-color: rgb(0, 85, 254);
    color: rgb(246, 243, 240);
    border-radius: 2560px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popup-close-button:hover {
    transform: rotate(90deg);
}

.icon-menu {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-menu img {
    width: 100%;
    height: 100%;
}

/* Form Background Effect */
.form-bg {
    position: absolute;
    top: -152px;
    right: 0;
    width: 150px;
    height: 500px;
    background-color: rgb(0, 85, 254);
    border-radius: 2560px;
    filter: blur(150px);
}

/* Form */
.form {
    position: relative;
    z-index: 2;
}

.contact-form-bottom-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 32px;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

/* Input Grid */
.input-halves {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .input-halves {
        grid-template-columns: 1fr;
    }
}

/* Input Wrapper */
.input-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    gap: 8px;
}

.label-large {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(11, 12, 14, 0.64);
}

/* Text Fields */
.text-field {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background-color: rgb(248, 248, 248);
    border: 1px solid rgba(11, 12, 14, 0.16);
    border-radius: 8px;
    color: rgba(11, 12, 14, 0.88);
    font-size: 14px;
    transition: all 0.3s ease;
}

.text-field:focus {
    outline: none;
    background-color: rgba(11, 12, 14, 0.88);
    border-color: rgba(246, 243, 240, 0.32);
    color: rgb(246, 243, 240);
}

.text-field::placeholder {
    color: rgba(11, 12, 14, 0.48);
}

.text-field.textarea {
    min-height: 120px;
    resize: vertical;
}

/* Select Field */
.input-relative {
    position: relative;
    width: 100%;
}

.select {
    appearance: none;
    cursor: pointer;
}

.select-field-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
    pointer-events: none;
}

.select-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-arrow img {
    width: 100%;
    height: 100%;
}

/* Price Range Radio Buttons */
.form-price-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.radio-button-field {
    position: relative;
    padding: 8px 16px;
    font-weight: 700;
    cursor: pointer;
}

.radio-button-field input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.w-form-formradioinput {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid rgba(11, 12, 14, 0.32);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-button-field:hover .w-form-formradioinput {
    background-color: rgba(0, 85, 254, 0.08);
    border-color: rgb(0, 85, 254);
}

.radio-button-field input[type="radio"]:checked + .w-form-formradioinput {
    background-color: rgb(0, 85, 254);
    border-color: rgb(0, 85, 254);
}

.radio-text {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.radio-button-field input[type="radio"]:checked ~ .radio-text {
    color: white;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    cursor: pointer;
    padding-left: 10px;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Hero Images */
.hero-images {
    position: relative;
    width: 280px;
    height: 380px;
    margin: 0 auto 80px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    perspective: 1000px;
    z-index: 2;
    overflow: visible;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    overflow: visible;
    z-index: 10;
}

.hero-image {
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(246, 243, 240, 0.08);
}

/* Brand Scroll */
.brand-scroll {
    margin-bottom: 40px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
    position: relative;
    z-index: 2;
}

.brand-scroll-track {
    display: flex;
}

.brand-scroll-text {
    font-size: 120px;
    font-weight: 700;
    color: rgb(246, 243, 240);
    line-height: 1;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    letter-spacing: 20px;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Title */
.hero-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(246, 243, 240, 0.7);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 70px;
    text-align: center;
}

.detail-section-title {
    font-size: 28px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 50px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.detail-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: rgb(0, 122, 255);
    border-radius: 2px;
}

/* Services Section */
.services {
    background-color: rgb(11, 12, 14);
    padding: 120px 0;
}

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

.service-item {
    padding: 48px;
    background-color: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-item:hover {
    background-color: rgba(246, 243, 240, 0.08);
    transform: translateY(-8px);
    border-color: rgba(246, 243, 240, 0.16);
}

.service-number {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.5);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-name {
    font-size: 32px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(246, 243, 240, 0.7);
}

/* Work Section */
.work {
    background-color: rgb(11, 12, 14);
    padding: 120px 0;
}

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

.work-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
    height: 100%;
}

.work-card:hover {
    transform: translateY(-12px);
}

.work-card:hover .work-image img {
    transform: scale(1.08);
}

.work-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.08);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-info {
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.work-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.work-tag {
    font-size: 12px;
    padding: 6px 14px;
    background-color: rgba(246, 243, 240, 0.08);
    border-radius: 20px;
    color: rgba(246, 243, 240, 0.7);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.work-title {
    font-size: 26px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(246, 243, 240, 0.6);
    margin-bottom: 16px;
    flex-grow: 1;
}

.work-link {
    font-size: 14px;
    color: rgb(0, 85, 254);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing {
    background-color: rgb(11, 12, 14);
    padding: 120px 0;
}

.pricing-toggle {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 6px;
    background-color: rgba(246, 243, 240, 0.04);
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(246, 243, 240, 0.08);
}

.toggle-btn {
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: rgba(246, 243, 240, 0.7);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-btn.active {
    background-color: rgb(0, 85, 254);
    color: rgb(246, 243, 240);
    box-shadow: 0px 4px 20px rgba(0, 85, 254, 0.3);
}

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

.pricing-card {
    padding: 48px;
    background-color: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.08);
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    background-color: rgba(246, 243, 240, 0.08);
    transform: translateY(-8px);
    border-color: rgba(246, 243, 240, 0.16);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background-color: rgb(0, 85, 254);
    color: rgb(246, 243, 240);
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 36px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 12px;
}

.pricing-subtitle {
    font-size: 16px;
    color: rgba(246, 243, 240, 0.6);
    margin-bottom: 28px;
}

.pricing-price {
    font-size: 52px;
    font-weight: 700;
    color: rgb(246, 243, 240);
    margin-bottom: 16px;
}

.pricing-description {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.6);
    margin-bottom: 32px;
}

.pricing-features {
    border-top: 1px solid rgba(246, 243, 240, 0.08);
    padding-top: 28px;
    margin-top: 32px;
}

.features-title {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.6);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 15px;
    color: rgba(246, 243, 240, 0.8);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(0, 85, 254);
    font-weight: bold;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    background-color: rgb(11, 12, 14);
    padding: 120px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 48px;
    background-color: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(246, 243, 240, 0.9);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(246, 243, 240, 0.16);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 6px;
}

.author-role {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.6);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background-color: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(246, 243, 240, 0.08);
    transform: scale(1.05);
}

.slider-indicator {
    text-align: center;
    margin-top: 20px;
}

.slider-count {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.6);
}

/* FAQ Section */
.faq {
    background-color: rgb(11, 12, 14);
    padding: 120px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(246, 243, 240, 0.08);
    padding: 32px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: rgb(246, 243, 240);
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.faq-question:hover {
    color: rgb(0, 85, 254);
}

.faq-icon {
    font-size: 32px;
    color: rgba(246, 243, 240, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: rgb(0, 85, 254);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-top: 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(246, 243, 240, 0.7);
}

/* CTA Section */
/* CTA Section */
.cta {
    padding: 140px 0;
    background-color: rgb(11, 12, 14);
}

.cta .container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 56px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(246, 243, 240, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 0 0 400px;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(246, 243, 240, 0.08);
}

/* Footer */
.footer {
    background-color: rgb(11, 12, 14);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(246, 243, 240, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(246, 243, 240, 0.7);
    max-width: 500px;
    margin-bottom: 24px;
}

.footer-email {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: rgba(255, 255, 255, 1);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(246, 243, 240, 0.1);
    color: rgba(246, 243, 240, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(246, 243, 240, 0.2);
    color: rgba(246, 243, 240, 1);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

.footer-column {
    min-width: 150px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: rgb(246, 243, 240);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-list a {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: rgb(0, 85, 254);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(246, 243, 240, 0.08);
}

.footer-copyright,
.footer-credits {
    font-size: 14px;
    color: rgba(246, 243, 240, 0.5);
}

.footer-credits a {
    color: rgba(246, 243, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: rgb(0, 85, 254);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-wrapper {
        padding: 0 20px;
    }
    
    .navbar {
        max-width: 100%;
    }
    
    .nav-container {
        gap: 12px;
    }
    
    .nav-link {
        padding: 14px 18px;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-images {
        width: 220px;
        height: 300px;
        margin-bottom: 60px;
    }
    
    .hero-image {
        width: 240px;
        height: 320px;
    }
    
    .brand-scroll-text {
        font-size: 80px;
        letter-spacing: 15px;
    }
    
    .hero-title {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cta .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-image {
        flex: 1;
        width: 100%;
        max-width: 500px;
    }
    
    .cta-title {
        font-size: 44px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions a.btn-primary, .nav-actions .btn-primary {
        display: none;
    }
    
    .navbar-wrapper {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 6px 10px;
    }
    
    .nav-container {
        gap: 8px;
    }
    
    .logo-link {
        width: 40px;
        height: 40px;
    }
    
    .mode-toggle {
        width: 40px;
        height: 40px;
    }
    
    .navbar-wrapper {
        padding: 16px 0;
    }
    
    .navbar-wrapper.scrolled {
        padding: 8px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-images {
        width: 280px;
        height: 380px;
        margin-bottom: 50px;
    }
    
    .hero-image {
        width: 240px;
        height: 320px;
    }
    
    .brand-scroll-text {
        font-size: 60px;
        letter-spacing: 10px;
    }
    
    .hero-title {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .service-item {
        padding: 36px;
    }
    
    .service-name {
        font-size: 28px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        padding: 36px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .cta {
        padding: 100px 0;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 100%;
        max-width: 280px;
        height: 360px;
    }
    
    .brand-scroll-text {
        font-size: 48px;
        letter-spacing: 8px;
    }
    
    .hero-title {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-item,
    .pricing-card,
    .testimonial-slide {
        padding: 28px;
    }
    
    .service-name {
        font-size: 24px;
    }
    
    .pricing-name {
        font-size: 32px;
    }
    
    .pricing-price {
        font-size: 44px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 16px;
    }
}

/* Compact Navigation Styles */
.navbar-compact {
    padding: 4px 8px;
    border-radius: 12px;
    max-width: 700px;
    width: auto;
}

.logo-compact {
    width: 36px;
    height: 36px;
}

.nav-links-compact {
    gap: 4px;
}

.nav-link-compact {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
}

.nav-link-compact:hover {
    background-color: rgba(246, 243, 240, 0.08);
}

.nav-actions-compact {
    gap: 6px;
}

.btn-contact-compact {
    padding: 8px 16px;
    font-size: 13px;
}

.mobile-menu-btn-compact {
    width: 36px;
    height: 36px;
}

.mobile-menu-btn-compact .hamburger-line {
    width: 18px;
    height: 2px;
}

/* Responsive adjustments for compact navigation */
@media (max-width: 768px) {
    .navbar-compact {
        padding: 6px 10px;
    }
    
    .nav-link-compact {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .btn-contact-compact {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .navbar-compact {
        padding: 4px 8px;
    }
    
    .logo-compact {
        width: 32px;
        height: 32px;
    }
    
    .nav-link-compact {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .btn-contact-compact {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .mobile-menu-btn-compact {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-btn-compact .hamburger-line {
        width: 16px;
        height: 1.5px;
    }
}

/* Work Detail Page Styles */
.work-detail {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.back-to-work {
    margin-bottom: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(246, 243, 240, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: rgba(246, 243, 240, 1);
}

.back-link .icon {
    width: 16px;
    height: 16px;
}

.project-header {
    margin-bottom: 60px;
}

.project-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.project-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(246, 243, 240, 0.08);
    border: 1px solid rgba(246, 243, 240, 0.12);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(246, 243, 240, 0.7);
    font-weight: 500;
}

.project-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: left;
}

.project-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(246, 243, 240, 0.7);
    max-width: 800px;
}

.project-hero {
    margin-bottom: 60px;
    margin-top: 40px;
    text-align: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-hero .hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.overlay-content {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.overlay-tag {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .overlay-tag {
    transform: translateY(0);
}

.overlay-info {
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.overlay-info h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
}

.overlay-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
}

.hero-image-wrapper:hover .overlay-info {
    transform: translateY(0);
}

.overlay-stats {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.hero-image-wrapper:hover .overlay-stats {
    transform: translateY(0);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    color: #4ade80;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.project-content {
    margin-bottom: 80px;
}

.project-info {
    margin-bottom: 60px;
}

.project-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(246, 243, 240, 0.8);
    max-width: 800px;
    text-align: left;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.details-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(246, 243, 240, 0.9);
}

.details-list {
    list-style: none;
}

.details-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(246, 243, 240, 0.7);
}

.details-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(246, 243, 240, 0.4);
}

.approach-section,
.design-highlights,
.visual-language,
.interactions-section,
.accessibility-section,
.outcome-section,
.testimonial-section,
.services-delivered,
.tools-section {
    margin-bottom: 60px;
}

.approach-description,
.interactions-description,
.accessibility-description,
.outcome-description,
.services-description,
.tools-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(246, 243, 240, 0.8);
    max-width: 800px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.highlight-card {
    background-color: rgba(246, 243, 240, 0.04);
    border: 1px solid rgba(246, 243, 240, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    background-color: rgba(246, 243, 240, 0.06);
}

.highlight-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(246, 243, 240, 0.9);
}

.highlight-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(246, 243, 240, 0.7);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 32px;
}

.visual-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(246, 243, 240, 0.9);
}

.visual-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(246, 243, 240, 0.7);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 32px;
}

.metric-item {
    text-align: center;
}

.metric-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(246, 243, 240, 0.9);
}

.metric-item p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(246, 243, 240, 0.7);
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: rgba(246, 243, 240, 0.9);
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid rgba(246, 243, 240, 0.2);
}

.author-position {
    font-size: 16px;
    color: rgba(246, 243, 240, 0.6);
}

.project-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(246, 243, 240, 0.08);
}

.project-nav-btn {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: rgba(246, 243, 240, 0.7);
    transition: color 0.3s ease;
    max-width: 200px;
}

.project-nav-btn:hover {
    color: rgba(246, 243, 240, 1);
}

.nav-label {
    font-size: 14px;
    margin-bottom: 4px;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .work-detail {
        padding: 100px 0 60px;
    }
    
    .project-title {
        font-size: 40px;
    }
    
    .detail-section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .project-subtitle {
        font-size: 18px;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .overlay-info h3 {
        font-size: 24px;
    }
    
    .overlay-info p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .project-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlights-grid,
    .visual-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-navigation {
        flex-direction: column;
        gap: 24px;
    }
    
    .project-nav-btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .detail-section-title {
        font-size: 22px;
        margin-bottom: 30px;
        padding-left: 16px;
    }
    
    .detail-section-title::before {
        height: 20px;
        width: 3px;
    }
}
