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

:root {
    --primary-orange: #F95524;
    --primary-red: #FF3B00;
    --dark-bg: #110501;
    --light-bg: #FFFFFF;
    --gray-text: #110501;
    --gray-light: #A29C9A;
    --gray-medium: #9E9E9E;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--light-bg);
    z-index: 1000;
    height: 112px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 80px;
}

.nav-logo {
    cursor: pointer;
    position: relative;
    top: 10px;
    height: 92px;
    width: 122px;
}

.logo-img {
    height: 92px;
    width: 122px;
}

.nav-menu {
    position: absolute;
    left: 50%;
    top: 49px;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.4px;
    transition: color 0.3s;
    padding: 8px;
    line-height: 0.9;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-bg);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding-top: 156px;
    min-height: 948px;
    display: flex;
    align-items: flex-start;
    background: var(--light-bg);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.hero-content {
    flex: 0.7;
    max-width: 100%;
    padding-bottom: 100px;
}

.hero-title {
    font-size: 200px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 0.9;
    letter-spacing: -8px;
    margin-bottom: 80px;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
    color: var(--dark-bg);
    margin-bottom: 56px;
    line-height: 1.4;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--primary-orange);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: -0.4px;
    min-width: 310px;
}

.cta-button:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.arrow-icon {
    transition: transform 0.3s;
    width: 24px;
    height: 24px;
}

.cta-button:hover .arrow-icon {
    transform: rotate(45deg);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex: 1;
    padding-top: 70px;
}

.hero-image-wrapper {
    width: 510px;
    height: 600px;
    background: var(--gray-light);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.slide-container {
    position: absolute;
    bottom: 32px;
    right: 32px;
}

.slide-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slide-btn:hover {
    transform: scale(1.1);
}

.slide-btn svg {
    transform: rotate(90deg);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 0 80px;
}

.section-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 120px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-red);
}

.section-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-red);
    letter-spacing: -0.4px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: -2px;
    line-height: 1.1;
    text-align: right;
    max-width: 858px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 621px);
    gap: 39px;
    max-width: 1280px;
    margin: 0 auto 30px;
    padding: 0 80px;
    justify-content: center;
}

/* Service Cards */
.service-card {
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    background: transparent;
}

.service-card img {
    width: 100%;
    height: 1266px;
    object-fit: cover;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Web Project Wrapper */
.web-project-wrapper {
    width: 1280px;
    height: 536px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.web-project-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.web-project-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.card-logo {
    margin-bottom: 10px;
}

.card-logo img {
    height: 30px;
}

.card-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.akon-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    letter-spacing: 1px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.typography-display {
    text-align: center;
    margin: 20px 0;
}

.display-text {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.akon-card .display-text {
    color: var(--primary-red);
}

.card-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-category,
.card-client {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.typography-samples {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sample-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-bg);
}

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

.card-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Web Projects */
.web-projects {
    grid-column: 1 / -1;
    width: 1280px;
    height: 536px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--gray-light);
}

.project-card {
    display: none;
}

.web-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 620px;
    height: 470px;
    background: rgba(117, 77, 65, 0.4);
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    height: 521px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 178px 1fr auto 180px;
    gap: 100px;
    padding: 93px 80px 0;
    position: relative;
}

/* Footer Logo Section */
.footer-logo-section {
    width: 178px;
}

.footer-logo-img {
    width: 178px;
    height: 134px;
    margin-bottom: 38px;
}

.footer-social-text {
    font-size: 16px;
    line-height: 1.34;
    text-transform: capitalize;
    width: 284px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 29px;
    height: 29px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Footer Services */
.footer-services {
    position: absolute;
    left: 625px;
    top: 93px;
}

.footer-services h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 0.9;
    margin-bottom: 38px;
}

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

.footer-services li {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.81;
    letter-spacing: -0.4px;
}

.footer-services li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-services li a:hover {
    opacity: 1;
}

/* Footer Links */
.footer-links {
    position: absolute;
    left: 946px;
    top: 93px;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 0.9;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* Footer Contact */
.footer-contact {
    position: absolute;
    right: 80px;
    top: 93px;
    width: 180px;
}

.contact-address,
.contact-email,
.contact-phone {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.contact-email,
.contact-phone {
    text-transform: lowercase;
}

/* Footer Bottom */
.footer-bottom {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: capitalize;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 150px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 40px;
    }

    .service-card img {
        height: auto;
    }

    .web-project-wrapper {
        width: calc(100% - 80px);
        height: auto;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .navbar {
        padding: 0 40px;
    }

    .hero-container {
        padding: 0 40px;
    }

    .section-header {
        padding: 0 40px;
    }

    .services-grid {
        padding: 0 40px;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 120px;
    }

    .section-title {
        font-size: 42px;
    }

    .web-project-wrapper {
        width: calc(100% - 80px);
        height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 0 20px;
        height: auto;
    }

    .nav-logo {
        top: 20px;
    }

    .logo-img {
        height: 60px;
        width: auto;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: white;
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        transform: translateX(0);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        top: 20px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: -3px;
    }

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

    .hero-image-wrapper {
        width: 100%;
        height: 400px;
    }

    .section-header {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .section-title {
        text-align: left;
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .web-project-wrapper {
        width: calc(100% - 40px);
        height: auto;
    }

    .footer {
        height: auto;
        padding-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .footer-logo-section {
        width: 100%;
    }

    .footer-social-text {
        width: 100%;
    }

    .footer-services,
    .footer-links,
    .footer-contact {
        position: static;
        width: 100%;
    }

    .footer-services h3 {
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-bottom {
        position: static;
        transform: none;
        margin-top: 40px;
        padding: 20px;
    }
}

/* Services Page Styles */
.navbar-services {
    background: var(--primary-orange);
}

.navbar-services .logo-img {
    /* Logo already dark, no filter needed */
}

.navbar-services .nav-link {
    color: #000000;
}

.navbar-services .nav-link-white {
    color: white !important;
}

.services-hero {
    background: var(--primary-orange);
    min-height: 100vh;
    padding: 156px 80px 120px;
}

.services-hero-container {
    max-width: 1440px;
    margin: 0 auto;
}

.services-title-section {
    margin-bottom: 100px;
}

.dot-white {
    background: white;
}

.section-label-white {
    color: white;
}

.services-description {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    max-width: 563px;
    margin-top: 40px;
    margin-left: 28px;
    text-align: justify;
}

.services-description strong {
    font-weight: 700;
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 87px;
    max-width: 1320px;
}

.services-column {
    display: flex;
    flex-direction: column;
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
    margin-bottom: 60px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-number {
    font-size: 18px;
    font-weight: 500;
    color: white;
    line-height: 1.8;
    min-width: 28px;
}

.service-title-text {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.service-description {
    font-size: 17px;
    line-height: 1.77;
    color: white;
    margin-left: 68px;
}

/* Services Page Responsive */
@media (max-width: 1440px) {
    .services-hero {
        padding: 156px 60px 120px;
    }

    .services-title-section {
        margin-bottom: 80px;
    }

    .services-list-grid {
        gap: 60px;
    }

    .service-title-text {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .navbar-services {
        padding: 0 40px;
    }

    .services-hero {
        padding: 120px 40px 80px;
    }

    .services-title-section {
        margin-bottom: 60px;
    }

    .services-description {
        font-size: 16px;
        max-width: 100%;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-title-text {
        font-size: 36px;
    }

    .service-item {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .service-description {
        margin-left: 68px;
    }
}

@media (max-width: 768px) {
    .navbar-services {
        padding: 0 20px;
        height: auto;
    }

    .navbar-services .nav-logo {
        top: 20px;
    }

    .navbar-services .logo-img {
        height: 60px;
        width: auto;
    }

    .navbar-services .mobile-menu-toggle {
        display: flex;
        position: relative;
        top: 20px;
    }

    .navbar-services .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: var(--primary-orange);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        transform: translateX(0);
    }

    .navbar-services .nav-menu.active {
        left: 0;
    }

    .navbar-services .nav-link {
        color: white;
        font-size: 18px;
        padding: 15px 0;
    }

    .services-hero {
        padding: 100px 20px 60px;
    }

    .services-title-section {
        margin-bottom: 50px;
    }

    .services-description {
        font-size: 15px;
        margin-left: 0;
        max-width: 100%;
        text-align: left;
    }

    .services-list-grid {
        gap: 30px;
    }

    .service-item {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .service-header {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .service-number {
        font-size: 16px;
    }

    .service-title-text {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .service-description {
        font-size: 14px;
        margin-left: 0;
        line-height: 1.6;
    }
}

/* References Page */
.references-section {
    padding: 156px 80px 120px;
    background: white;
    min-height: 100vh;
}

.references-container {
    max-width: 1440px;
    margin: 0 auto;
}

.references-title-section {
    margin-bottom: 80px;
}

.references-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark-bg);
    max-width: 900px;
    margin-bottom: 100px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1280px;
}

.reference-card {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all 0.3s;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reference-logo {
    max-width: 200px;
    height: auto;
}

/* Contact Page */
.contact-section {
    padding: 156px 80px 120px;
    background: white;
    min-height: 100vh;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-content {
    max-width: 500px;
}

.contact-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark-bg);
    margin: 80px 0 40px;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-bg);
}

.contact-form-wrapper {
    background: white;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-bg);
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    background: var(--primary-orange);
    color: white;
    padding: 16px 48px;
    border: none;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* References & Contact Responsive */
@media (max-width: 1024px) {

    .references-section,
    .contact-section {
        padding: 120px 40px 80px;
    }

    .references-heading,
    .contact-heading {
        font-size: 42px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .references-section,
    .contact-section {
        padding: 100px 20px 60px;
    }

    .references-title-section {
        margin-bottom: 40px;
    }

    .references-heading {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 60px;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reference-card {
        padding: 40px 30px;
        min-height: 150px;
    }

    .reference-logo {
        max-width: 150px;
    }

    .contact-heading {
        font-size: 36px;
        margin: 40px 0 30px;
    }

    .contact-description {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 15px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}