/* ===== MODERN WEBGENIX DESIGN SYSTEM ===== */
/* Color Palette: Black, White, Gray - Professional & Minimalist */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --lighter-gray: #4a4a4a;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --accent-gray: #6b7280;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-black);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Typography - Space Grotesk for headings */
h1, h2, h3, h4, h5, h6, .huge-title, .huge-section-label, .huge-service-title, .huge-work-title, .huge-cta-title, .section-title, .hero-title {
    font-family: 'Space Grotesk', sans-serif;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
}


section {
    padding: 120px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 20px;
    color: var(--accent-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent image overflow on mobile */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-black);
    cursor: pointer;
    background-color: var(--primary-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:hover {
    color: var(--primary-black);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary-black);
    color: var(--white);
    border-color: var(--primary-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.btn-outline::before {
    background-color: var(--primary-black);
}

.btn-outline:hover {
    background-color: transparent;
    color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 18px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.company-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.huge-nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-black);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-black);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-black);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--primary-black);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-title .title-word {
    display: inline-block;
    opacity: 1;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title .title-word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .title-word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .title-word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .title-word:nth-child(4) { animation-delay: 0.4s; }
.hero-title .title-word:nth-child(5) { animation-delay: 0.5s; }
.hero-title .title-word:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--accent-gray);
    line-height: 1.8;
    max-width: 550px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--primary-black);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--accent-gray);
    line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--off-white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-black);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-black);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border: 2px solid var(--primary-black);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background-color: var(--primary-black);
    color: var(--white);
    transform: rotate(5deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--accent-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background-color: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-black);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background-color: var(--white);
}

.portfolio-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-title {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.portfolio-overlay .btn {
    background-color: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
}

.portfolio-overlay .btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-black);
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--accent-gray);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background-color: var(--white);
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-black);
}

.stat-item h4 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-black);
    font-weight: 800;
}

.stat-item p {
    color: var(--accent-gray);
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.newsletter-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
}

.newsletter-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input[type="email"] {
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    width: 100%;
    background-color: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
}

.newsletter-form .btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
}

.chat-header {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-chat {
    cursor: pointer;
    font-size: 1.3rem;
    transition: var(--transition);
}

.close-chat:hover {
    opacity: 0.7;
}

.chat-body {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    background-color: var(--off-white);
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-message.bot {
    align-items: flex-start;
}

.chat-message.user {
    align-items: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 0;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bot .message-content {
    background-color: var(--white);
    color: var(--primary-black);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.user .message-content {
    background-color: var(--primary-black);
    color: var(--white);
}

.message-time {
    font-size: 0.7rem;
    color: var(--accent-gray);
    margin-top: 5px;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    font-size: 0.9rem;
}

.chat-input button {
    margin-left: 10px;
    background-color: var(--primary-black);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    background-color: var(--dark-gray);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    padding: 50px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent-gray);
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--primary-black);
    background-color: var(--off-white);
}

.modal-title {
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-black);
    font-size: 2rem;
    font-weight: 800;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-black);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--primary-black);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links,
    .huge-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active,
    .huge-nav-links.active {
        right: 0;
    }


    .nav-links a,
    .huge-nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 8px 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .company-logo {
        width: 38px;
        height: 38px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .navbar {
        padding: 18px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .company-logo {
        width: 35px;
        height: 35px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 35px 25px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .chat-box {
        width: calc(100vw - 40px);
        right: 20px;
        max-width: 320px;
        bottom: 75px;
    }

    /* Improve touch targets on mobile */
    .huge-service-link,
    .huge-work-link,
    .huge-cta-button,
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .nav-links,
    .huge-nav-links {
        width: 260px;
        max-width: 75vw;
        padding: 90px 30px 30px;
    }
}

/* ===== SERVICE PAGE STYLES ===== */
.service-page-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--white);
    text-align: center;
}

.service-page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--primary-black);
    font-weight: 800;
}

.service-page-hero p {
    font-size: 1.25rem;
    color: var(--accent-gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    padding: 100px 0;
    background: var(--off-white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.service-image {
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-black);
    font-weight: 800;
}

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--accent-gray);
    line-height: 1.8;
}

.service-info ul li i {
    color: var(--primary-black);
    margin-top: 5px;
    flex-shrink: 0;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid var(--primary-black);
    background-color: transparent;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
}

.back-btn:hover {
    background-color: var(--primary-black);
    color: var(--white);
}

@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .service-content {
        padding: 60px 0;
    }
    
    .service-gallery {
        grid-template-columns: 1fr;
    }
}

/* ===== HUGE INC INSPIRED STYLES ===== */

/* Navigation Updates */
.huge-nav {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

.huge-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section - Huge Style */
.huge-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.huge-hero-content {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    text-align: center;
    z-index: 1;
    box-sizing: border-box;
}

.huge-hero-text {
    margin-bottom: 60px;
}

.huge-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-black);
    letter-spacing: -0.03em;
    margin: 0;
    text-align: center;
}

.huge-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    margin-bottom: 0.1em;
}

.huge-line:nth-child(1) {
    animation-delay: 0.1s;
}

.huge-line:nth-child(2) {
    animation-delay: 0.3s;
}

.huge-line:nth-child(3) {
    animation-delay: 0.5s;
}

.huge-accent {
    color: var(--primary-black);
    font-weight: 700;
    display: block;
}

.huge-hero-subtitle {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.huge-statement {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--accent-gray);
    margin: 15px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    line-height: 1.4;
}

.huge-statement:nth-child(1) {
    animation-delay: 0.7s;
}

.huge-statement:nth-child(2) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@media (max-width: 480px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Belief Section */
.huge-belief {
    padding: 150px 0;
    background: var(--white);
}

.huge-belief-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.huge-section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.huge-belief-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-black);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

/* Services Section */
.huge-services {
    padding: 150px 0;
    background: var(--off-white);
}

.huge-section-header {
    margin-bottom: 100px;
    max-width: 800px;
    padding: 0 40px;
    box-sizing: border-box;
}

.huge-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--accent-gray);
    line-height: 1.6;
    margin-top: 20px;
}

.huge-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.huge-service-item {
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.huge-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-black);
    transition: var(--transition);
}

.huge-service-item:hover::before {
    height: 100%;
}

.huge-service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-black);
}

.huge-service-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--primary-black);
    opacity: 0.1;
    margin-bottom: 20px;
    line-height: 1;
}

.huge-service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.huge-service-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--accent-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.huge-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.huge-service-link:hover {
    gap: 15px;
}

.huge-service-link i {
    transition: var(--transition);
}

.huge-service-link:hover i {
    transform: translateX(5px);
}

/* Work Section */
.huge-work {
    padding: 150px 0;
    background: var(--white);
}

.huge-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.huge-work-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.huge-work-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.huge-work-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--off-white);
}

.huge-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.huge-work-item:hover .huge-work-image img {
    transform: scale(1.1);
}

.huge-work-content {
    padding: 40px;
}

.huge-work-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.huge-work-desc {
    font-size: 1rem;
    color: var(--accent-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.huge-work-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.huge-work-link:hover {
    gap: 15px;
}

.huge-work-link i {
    transition: var(--transition);
}

.huge-work-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.huge-about {
    padding: 150px 0;
    background: var(--off-white);
}

.huge-about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.huge-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.huge-about-text {
    max-width: 700px;
}

.huge-about-desc {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--accent-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.huge-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.huge-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.huge-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-black);
}

.huge-stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: var(--primary-black);
    line-height: 1;
    margin-bottom: 10px;
}

.huge-stat-label {
    font-size: 0.9rem;
    color: var(--accent-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA Section */
.huge-cta {
    padding: 150px 0;
    background: var(--primary-black);
    color: var(--white);
    text-align: center;
}

.huge-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.huge-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.huge-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--white);
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.huge-cta-button:hover {
    background: transparent;
    color: var(--white);
    gap: 20px;
}

.huge-cta-button i {
    transition: var(--transition);
}

.huge-cta-button:hover i {
    transform: translateX(5px);
}

/* Footer */
.huge-footer {
    padding: 100px 0 40px;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.huge-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding: 0 40px;
    box-sizing: border-box;
}

.huge-footer-brand {
    max-width: 400px;
}

.huge-footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.huge-footer-brand p {
    font-size: 1.1rem;
    color: var(--accent-gray);
    line-height: 1.8;
}

.huge-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.huge-footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.huge-footer-col ul {
    list-style: none;
}

.huge-footer-col ul li {
    margin-bottom: 12px;
}

.huge-footer-col ul li a {
    color: var(--accent-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.huge-footer-col ul li a:hover {
    color: var(--primary-black);
    padding-left: 5px;
}

.huge-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.huge-footer-bottom p {
    color: var(--accent-gray);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 576px) {
    .huge-footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure proper text wrapping */
    .huge-title,
    .huge-belief-text,
    .huge-cta-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Better spacing for mobile */
    .huge-hero-subtitle {
        margin-top: 40px;
    }

    .scroll-indicator {
        display: none; /* Hide on very small screens to save space */
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .huge-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .huge-work-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .huge-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .huge-footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }
    
    .huge-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .huge-belief-content,
    .huge-section-header,
    .huge-about-content,
    .huge-cta-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .huge-hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .huge-hero-content {
        padding: 0 20px;
    }
    
    .huge-belief,
    .huge-services,
    .huge-work,
    .huge-about,
    .huge-cta {
        padding: 80px 0;
    }

    .huge-belief-content,
    .huge-section-header,
    .huge-about-content,
    .huge-cta-content {
        padding: 0 20px;
    }
    
    .huge-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .huge-work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .huge-work-image {
        height: 300px;
    }
    
    .huge-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .huge-footer-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .huge-footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .huge-service-item,
    .huge-work-content {
        padding: 30px 20px;
    }

    .huge-section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .huge-hero {
        min-height: 70vh;
        padding: 90px 0 50px;
    }

    .huge-hero-content {
        padding: 0 15px;
    }

    .huge-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
    }
    
    .huge-statement {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .huge-belief {
        padding: 60px 0;
    }

    .huge-belief-content {
        padding: 0 15px;
    }
    
    .huge-belief-text {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }

    .huge-section-label {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .huge-services,
    .huge-work,
    .huge-about,
    .huge-cta {
        padding: 60px 0;
    }

    .huge-section-header {
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .huge-section-subtitle {
        font-size: 1.1rem;
        margin-top: 15px;
    }
    
    .huge-services-grid,
    .huge-work-grid {
        gap: 25px;
    }

    .huge-service-item {
        padding: 25px 20px;
    }

    .huge-service-number {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .huge-service-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .huge-service-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .huge-work-image {
        height: 250px;
    }

    .huge-work-content {
        padding: 25px 20px;
    }

    .huge-work-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .huge-work-desc {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .huge-about-content {
        padding: 0 15px;
    }

    .huge-about-grid {
        gap: 40px;
    }

    .huge-about-desc {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .huge-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .huge-stat-item {
        padding: 30px 15px;
    }

    .huge-stat-number {
        font-size: 3rem;
        margin-bottom: 8px;
    }

    .huge-stat-label {
        font-size: 0.85rem;
    }

    .huge-cta {
        padding: 60px 0;
    }

    .huge-cta-content {
        padding: 0 15px;
    }
    
    .huge-cta-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 35px;
    }

    .huge-cta-button {
        padding: 16px 35px;
        font-size: 0.95rem;
    }

    .huge-footer {
        padding: 60px 0 30px;
    }

    .huge-footer-content {
        padding: 0 15px;
    }

    .huge-footer-logo {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .huge-footer-brand p {
        font-size: 1rem;
    }

    .huge-footer-links {
        gap: 25px;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 0.75rem;
    }

    .scroll-indicator i {
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Mobile Menu Fixes */
@media (max-width: 768px) {
    .menu-toggle {
        z-index: 1002 !important;
        position: relative;
    }
    
    .menu-toggle.active {
        position: fixed;
        right: 20px;
        top: 24px;
    }
    
    .nav-links.active,
    .huge-nav-links.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 280px !important;
        max-width: 80vw !important;
        height: 100vh !important;
        background-color: var(--white) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 100px 40px 40px !important;
        gap: 30px !important;
        box-shadow: var(--shadow-xl) !important;
        border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
        z-index: 1001 !important;
        overflow-y: auto !important;
        transform: none !important;
        transition: transform 0.3s ease !important;
    }
    
    .nav-links,
    .huge-nav-links {
        display: none !important;
    }
    
    /* Ensure links are visible */
    .nav-links a,
    .huge-nav-links a {
        color: var(--primary-black) !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        width: 100% !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .nav-links a:last-child,
    .huge-nav-links a:last-child {
        border-bottom: none !important;
    }
    
    /* Fix for body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
}
/* Hiring Section Styles */
.huge-hiring {
    padding: 100px 0;
    background: #f8f8f8;
}

.hiring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.hiring-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.hiring-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.hiring-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.hiring-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.hiring-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hiring-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hiring-link:hover {
    gap: 12px;
    color: #555;
}

.hiring-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eaeaea;
}

.hiring-statement {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000;
}
.huge-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--white);
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-black);
}

.huge-button:hover {
    background: black;
    color: var(--white);
    gap: 20px;
}

.huge-button i {
    transition: var(--transition);
}

.huge-button:hover i {
    transform: translateX(5px);
}
/* Responsive Styles */
@media (max-width: 768px) {
    .huge-hiring {
        padding: 60px 0;
    }
    
    .hiring-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hiring-card {
        padding: 30px 20px;
    }
    
    .hiring-statement {
        font-size: 1.5rem;
    }
}
/* ===== DROPDOWN STYLES ===== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--primary-black);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--off-white);
    color: var(--primary-black);
    padding-left: 28px;
}

.dropdown-menu a:hover::after {
    display: none;
}

/* Hover effects */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Arrow for dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background-color: rgba(0, 0, 0, 0.02);
        border: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        width: 100%;
        margin-top: 5px;
        border-left: 2px solid var(--primary-black);
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(0, 0, 0, 0.03);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    /* Remove hover effects on mobile */
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .nav-dropdown:hover .dropdown-icon {
        transform: none;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
}
/* ===== FIXES FOR MOBILE ISSUES ===== */

/* Ensure proper touch targets */
@media (max-width: 768px) {
    .menu-toggle {
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 1002 !important;
    }
    
    .chat-button {
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 999 !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Fix for chat widget on mobile */
    .chat-widget {
        z-index: 9999 !important;
    }
    
    .chat-box {
        z-index: 10000 !important;
    }
}

/* Fix for dropdown positioning */
@media (max-width: 768px) {
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}