:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #ff7d61;
    /* Orange */
    --gradient-primary: linear-gradient(135deg, #ff7d61 0%, #ffdb59 100%);
    --gradient-text: linear-gradient(135deg, #ff7d61 0%, #ffdb59 100%);
    --secondary-bg: #1a1a1a;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-color);
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

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

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

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links a i {
    display: none;
}

.mobile-only-logo {
    display: none;
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.selected-works {
    padding-bottom: 100px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all var(--transition-speed);
    border: none;
}

.btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    color: #666;
}

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

.footer-social-icons a {
    color: #aaa;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Page Header */
.page-header {
    padding: 155px 0 80px;
    background-color: #0a0a0a;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 1) 100%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: center;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

/* About Page */
/* About Page Redesign */
.about-content {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.about-content::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 1;
    /* Calculate distance to left edge: (Viewport - Container) / 2 + Padding */
    margin-left: calc(-1 * ((100vw - min(1200px, 100vw - 40px)) / 2 + 20px));
    width: calc(100% + ((100vw - min(1200px, 100vw - 40px)) / 2 + 20px));
}

.about-image:hover::before {
    transform: translate(-10px, 10px);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-color);
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 0 50% 50% 0;
    aspect-ratio: auto;
    /* Allow height to adapt or fix it? Let's keep it responsive but cover */
    min-height: 400px;
    /* Ensure strictly visible height */
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    /* No border on the edge */
}



.about-text {
    position: relative;
    padding-left: 20px;
}

.about-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.about-text p {
    margin-bottom: 25px;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Hobbies Section (Minimalist) */
.hobbies {
    background: #111;
    padding: 100px 0;
}

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

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

.hobby-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
}

.hobby-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.hobby-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Mobile Fallback */
@media (max-width: 768px) {
    .hobbies-minimal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.skills {
    margin-top: 40px;
}

.skills h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skills li {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.skills li:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

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

@media (max-width: 992px) {
    .about-grid {
        gap: 20px;
    }

    .about-text h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 80px 0;
    }

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

    .about-image {
        max-width: 100%;
        margin: 0 auto;
        margin-left: -20px;
        width: calc(100% + 40px);
        margin-bottom: 40px;
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-image img {
        height: 350px;
        border-radius: 0 175px 175px 0;
    }

    .about-image::before {
        top: 15px;
        left: -15px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}

/* Services Page */
.services-content {
    padding: 80px 0;
}

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

.service-card {
    background: #151515;
    padding: 40px;
    border-radius: 4px;
    transition: transform var(--transition-speed);
    border: 1px solid #222;
}

.service-card:hover,
.service-card.active-state {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-icon {
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-icon i {
    font-size: 48px;
    display: block;
}

.service-card:hover .service-icon,
.service-card.active-state .service-icon {
    transform: scale(1.1);
}

.service-card p {
    color: #aaa;
}

/* Portfolio Page */
.portfolio-content {
    padding: 80px 0;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

/* Portfolio Grid Layout */
.portfolio-grid,
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item,
.work-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform var(--transition-speed);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover,
.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    /* Enforce uniform height/shape */
    overflow: hidden;
}

.portfolio-item img,
.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure image covers the area without distortion */
    display: block;
    transition: transform 0.5s;
}

.portfolio-item:hover img,
.work-card:hover img {
    transform: scale(1.05);
}

.portfolio-info,
.work-info {
    padding: 20px;
    background: #1a1a1a;
    border-top: 1px solid #222;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-info h3,
.work-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.portfolio-info p,
.work-info p {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {

    .portfolio-grid,
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .portfolio-grid,
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

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

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
    position: relative;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Hamburger Animation */
.menu-toggle .bar.active:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle .bar.active:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle .bar.active:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle:hover .bar {
    background: var(--gradient-primary);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: none;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    /* Staggered Menu Item Animation */
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    /* Logo Animation Pop */
    .nav-links .mobile-only-logo {
        transform: translateY(20px) scale(0) rotate(-180deg);
        opacity: 0;
        transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.8s ease;
    }

    .nav-links.active .mobile-only-logo {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 15px 0;
    }

    .mobile-only-logo {
        display: block;
        margin-bottom: 20px;
    }

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

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

/* Home Page Expansion Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent-color);
}

.section-header p {
    color: #aaa;
    font-size: 1.1rem;
}

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

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-color);
    border-image: var(--gradient-primary) 1;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #000;
    border-image: none;
    border-color: transparent;
}

/* Testimonials */
.testimonials {
    background: #111;
    overflow: hidden;
    /* Hide overflow from slider */
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding-right: 40px;
    /* Add padding equal to gap for seamless loop */
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    border: 1px solid #222;
    width: 400px;
    /* Fixed width for consistent scrolling */
    flex-shrink: 0;
    margin-bottom: 20px;
    /* Space for the tail */
    display: flex;
    flex-direction: column;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40px;
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-bottom: 1px solid #222;
    border-right: 1px solid #222;
    transform: rotate(45deg);
}

.testimonial-card p {
    font-style: normal;
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid var(--accent-color); */
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-info h4 {
    color: var(--accent-color);
    margin-bottom: 2px;
    font-size: 1rem;
}

.client-info span {
    color: #666;
    font-size: 0.85rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move exactly half way */
    }
}

/* Services Expansion Styles */

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0%,
            var(--accent-color) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    z-index: 0;
    display: block;
}

.process-step {
    background: #151515;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #222;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #111;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: all 0.4s;
}

.process-step:hover .step-number {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.process-step h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.process-step p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #151515;
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid #222;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #444;
}

.pricing-card.popular {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.price {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.pricing-card .price-sub {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: block;
}

.pricing-card p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    color: #ccc;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #151515;
    border: 1px solid #222;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #333;
}

.faq-item.active {
    border-color: var(--accent-color);
    background: #1a1a1a;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    transition: color 0.3s;
    font-weight: 500;
}

.faq-item.active .faq-question h3 {
    color: var(--accent-color);
}

.toggle-icon {
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    color: #ccc;
    padding: 0 25px 25px 25px;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/images/vmh-macbook-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 140px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    font-family: var(--font-heading);
}

.cta-section p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
        /* Hide connecting line on tablet */
    }

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

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

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 100px 0;
    }
}



/* Enhanced Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    background: linear-gradient(145deg, #151515, #111);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Decorative Element */
.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Availability Status */
.availability-status {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 204, 113, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse 2s infinite;
}

.status-text {
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: var(--font-heading);
}

.contact-info p {
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.2rem;
    border: 1px solid #333;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    margin-bottom: 0;
    color: #aaa;
    font-size: 0.95rem;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Next Steps */
.next-steps {
    border-top: 1px solid #222;
    padding-top: 30px;
}

.next-steps h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.steps-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.steps-list li span {
    width: 24px;
    height: 24px;
    background: #222;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Floating Labels Form */
.contact-form {
    background: transparent;
    padding: 0;
    border: none;
}

.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating input,
.form-group.floating textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    background: #0a0a0a;
}

.form-group.floating label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #666;
    pointer-events: none;
    transition: all 0.3s;
    font-size: 1rem;
    background: transparent;
}

.form-group.floating input:focus~label,
.form-group.floating input:not(:placeholder-shown)~label,
.form-group.floating textarea:focus~label,
.form-group.floating textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: #1a1a1a;
    padding: 0 5px;
}

.btn.full-width,
.btn-outline.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Enhanced Footer */
.main-footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid #222;
    margin-top: 0;
    /* Remove default margin */
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #888;
    transition: color 0.3s;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px 15px;
    color: #fff;
    border-radius: 2px;
    flex-grow: 1;
}

.newsletter-form button {
    background: var(--accent-color);
    border: none;
    color: #000;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Experience Page */
.experience-content {
    padding: 80px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #333;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid #0a0a0a;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.client-info {
    margin-bottom: 20px;
}

.client-logo-wrapper {
    height: 45px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.client-logo {
    max-height: 100%;
    max-width: 140px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .client-logo {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.client-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.timeline-content h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.timeline-content h4 {
    color: #888;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 400;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 10px;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 90vh;
    width: 100%;
    /* Ensure full width for carousel */
    overflow-x: auto;
    /* Enable horizontal scrolling */
    overflow-y: hidden;
    /* Hide vertical overflow */
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    gap: 0;
    /* No gap for seamless carousel */
    padding: 0;
    /* Remove padding */
    background: transparent;
    border-radius: 4px;
    scroll-snap-type: x mandatory;
    /* Snap to images */
    scroll-behavior: smooth;
    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    position: relative;
}

.lightbox-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.lightbox-content-wrapper::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.lightbox-content-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 4px;
}

.lightbox-content {
    flex: 0 0 100%;
    /* Full width of container */
    width: 100%;
    height: 90vh;
    /* Fixed height for consistency */
    object-fit: contain;
    /* Maintain aspect ratio */
    scroll-snap-align: center;
    /* Snap to center */
    box-shadow: none;
    border: none;
    border-radius: 0;
    display: block;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2002;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    font-size: 24px;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
}

/* Active Nav State */
.nav-links a.active {
    color: var(--accent-color);
}

/* Enhanced Motion */
/* Staggered Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Hero Text Reveal */
.hero h1 {
    opacity: 0;
    animation: revealText 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.5s;
}

.hero p {
    opacity: 0;
    animation: revealText 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes revealText {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Button Micro-interactions */
.btn,
.btn-outline,
.filter-btn {
    position: relative;
    overflow: hidden;
}

.btn::after,
.btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after,
.btn-outline:hover::after {
    width: 300px;
    height: 300px;
}