/* MolTech Digital Agency - Innovative Creative Styling */

/* CSS Variables - Brand Colors */
:root {
    --primary-black: #f6f1e8;
    --primary-white: #1f2430;
    --accent-red: #c63f3f;
    --accent-red-dark: #9f2f2f;
    --accent-red-light: #e77a63;
    --dark-gray: #ebe2d6;
    --medium-gray: #4f5a69;
    --light-gray: #ffffff;
    --border-gray: #d8ccbc;
    --glass-bg: rgba(31, 36, 48, 0.05);
    --glass-border: rgba(31, 36, 48, 0.1);
    --gradient-red: linear-gradient(135deg, #c63f3f 0%, #e77a63 100%);
    --gradient-dark: linear-gradient(135deg, #f6f1e8 0%, #ebe2d6 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--medium-gray);
    background: var(--primary-black);
    background-image: none;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-white);
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--accent-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(198, 63, 63, 0.45);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-red);
    color: var(--primary-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .highlight {
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(31, 36, 48, 0.72);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: rgba(246, 241, 232, 0.72);
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(246, 241, 232, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(31, 36, 48, 0.12);
    padding: 0.75rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    justify-content: center;
}

.logo-text span {
    color: var(--accent-red);
}

.tagline {
    font-size: 0.65rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-cta-mobile {
    display: none;
}

.nav-link {
    color: var(--primary-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link span {
    position: relative;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-red);
    color: var(--primary-white);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
}

.cta-button.secondary:hover {
    background: var(--primary-white);
    color: var(--accent-red);
    border-color: var(--primary-white);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--primary-black);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-red);
    top: -100px;
    right: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-red-light);
    bottom: 10%;
    left: 5%;
    animation: pulse 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 36, 48, 0.15);
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--primary-white);
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.hero-title .highlight {
    color: var(--accent-red);
    position: relative;
}

.hero-title .gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(31, 36, 48, 0.85);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-description strong {
    color: var(--primary-white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-white);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(31, 36, 48, 0.65);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(220, 20, 60, 0.3);
    border: 3px solid var(--accent-red);
    z-index: 10;
    position: relative;
    background: var(--primary-white);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(31, 36, 48, 0.15);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.hero-badges .visual-card {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    justify-content: center;
}

.hero-badges .card-1,
.hero-badges .card-2,
.hero-badges .card-3 {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
}

.visual-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-white);
}

.visual-card span {
    color: var(--primary-white);
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(31, 36, 48, 0.6);
    font-size: 0.8rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(31, 36, 48, 0.35);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

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

.service-card {
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* .service-card:hover { */
/*     transform: translateY(-10px); */
/*     border-color: rgba(220, 20, 60, 0.3); */
/*     box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2); */
/* } */

/* .service-card:hover::before { */
/*     opacity: 1; */
/* } */

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* .service-card:hover .service-glow { */
/*     opacity: 1; */
/* } */

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(31, 36, 48, 0.1);
    font-family: 'Space Grotesk', sans-serif;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-white);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(31, 36, 48, 0.72);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

 .service-features {
    list-style: disc inside;
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}


 .service-features li {
    margin-bottom: 0.5rem;
    color: rgba(31, 36, 48, 0.62);
    font-size: 0.95rem;
}


.service-features li i {
    color: var(--accent-red);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 1rem;
}

/* Skills & Expertise Section */
.skills {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--primary-black);
}

.skills-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.skills-marquee {
    display: flex;
    width: max-content;
    animation: scroll-skills 25s linear infinite;
    gap: 1.5rem;
}

.skills-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 120px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.skill-item:hover {
    transform: translateY(-8px);
}

.skill-logo {
    width: 120px;
    height: 120px;
    background: rgba(31, 36, 48, 0.08);
    border: 2px solid var(--brand-color, var(--accent-red));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--brand-color, var(--accent-red));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block;
}

.skill-logo:has(img) {
    background: rgba(255, 255, 255, 0.05);
    border-width: 1px;
}

.skill-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-item:hover .skill-logo {
    background: rgba(220, 20, 60, 0.15);
    border-color: var(--brand-color, var(--accent-red));
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
    transform: scale(1.05);
}

.skill-item:hover .skill-logo::before {
    opacity: 1;
}

.skill-name {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.skill-item:hover .skill-name {
    color: var(--brand-color, var(--accent-red));
}

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

@media (max-width: 768px) {
    .skill-logo {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .skill-name {
        font-size: 0.9rem;
    }
    
    .skills-track {
        gap: 2rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

/* Our Websites Section */
.websites {
    padding: 80px 0;
    position: relative;
}

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

.website-preview-card {
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.website-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.15);
}

.website-link {
    text-decoration: none;
    display: block;
}

.website-preview-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-preview-content {
    text-align: center;
    color: var(--primary-white);
}

.website-preview-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-red);
}

.website-preview-content span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.website-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.website-preview-card:hover .website-preview-overlay {
    opacity: 1;
}

.preview-btn {
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: #ff4444;
    transform: scale(1.05);
}

.website-preview-info {
    padding: 1.5rem;
}

.website-preview-info h3 {
    color: var(--primary-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.website-preview-info p {
    color: rgba(31, 36, 48, 0.72);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.website-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.website-tech span {
    background: var(--accent-red);
    color: var(--primary-white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.websites-cta {
    text-align: center;
    margin-top: 2rem;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--primary-black);
}

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

.pricing-card {
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 20, 60, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(31, 36, 48, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-red);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: rgba(31, 36, 48, 0.52);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1rem;
    color: rgba(31, 36, 48, 0.62);
}

.price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-white);
    font-family: 'Space Grotesk', sans-serif;
}

.price .period {
    font-size: 0.9rem;
    color: rgba(31, 36, 48, 0.52);
}

 .pricing-features {
    list-style: disc inside;
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}


 .pricing-features li {
    margin-bottom: 0.75rem;
    color: rgba(31, 36, 48, 0.82);
    border-bottom: 1px solid rgba(31, 36, 48, 0.08);
    padding-bottom: 0.5rem;
}


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

.pricing-features li i {
    width: 20px;
    color: var(--accent-red);
}

.pricing-features li.disabled {
    color: rgba(31, 36, 48, 0.34);
}

.pricing-features li.disabled i {
    color: rgba(31, 36, 48, 0.34);
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(31, 36, 48, 0.1);
    color: var(--primary-white);
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--gradient-red);
}

.pricing-card.featured .pricing-btn {
    background: var(--gradient-red);
}

.pricing-card.featured .pricing-btn:hover {
    transform: scale(1.02);
}

/* Individual Pricing */
.individual-pricing h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.pricing-card.small {
    padding: 2rem;
}

.pricing-card.small .price .amount {
    font-size: 1.5rem;
}

/* Social Media Section */
.social-media {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.social-media .section-subtitle {
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Work Section */
.work {
    padding: 80px 0;
    background: var(--dark-gray);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.work-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.work-large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-red);
    color: var(--primary-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.work-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.work-overlay p {
    color: rgba(31, 36, 48, 0.72);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--dark-gray);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: var(--primary-black);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(31, 36, 48, 0.11);
    transition: all 0.3s ease;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ff6b6b;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(31, 36, 48, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-red);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    color: rgba(31, 36, 48, 0.82);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 36, 48, 0.12);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.author-info h4 {
    color: var(--primary-white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: rgba(31, 36, 48, 0.62);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonials-carousel .testimonial-card {
        padding: 1.5rem;
    }
}

/* Design Gallery */
.design-gallery {
    padding: 80px 0;
    background: var(--dark-gray);
    overflow: hidden;
}

/* Web Development Section */
.web-development {
    padding: 80px 0;
    background: var(--primary-black);
}

.web-development .section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.website-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.website-carousel::-webkit-scrollbar {
    height: 8px;
}

.website-carousel::-webkit-scrollbar-track {
    background: rgba(31, 36, 48, 0.1);
    border-radius: 4px;
}

.website-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

.website-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.website-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.15);
}

.website-card.featured {
    border-color: var(--accent-red);
    background: rgba(220, 20, 60, 0.1);
}

.website-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: var(--primary-white);
}

.website-card h3 {
    color: var(--primary-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.website-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.website-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.website-price-row .website-price {
    margin-bottom: 0;
}

.website-price-row .website-btn {
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.website-price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.website-tag {
    color: rgba(31, 36, 48, 0.62);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.website-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.website-features li {
    color: rgba(31, 36, 48, 0.82);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.website-features li i {
    color: var(--accent-red);
    font-size: 0.8rem;
}

.website-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-red);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.website-btn:hover {
    background: #ff4444;
    transform: scale(1.02);
}

.prev-btn-web {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-btn-web {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn-web:hover,
.next-btn-web:hover {
    background: #ff6b6b;
    transform: translateY(-50%) scale(1.1);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    padding: 0 40px;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    color: var(--primary-white);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: #ff4444;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.design-carousel {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.design-carousel::-webkit-scrollbar {
    height: 8px;
}

.design-carousel::-webkit-scrollbar-track {
    background: rgba(31, 36, 48, 0.1);
    border-radius: 4px;
}

.design-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

.design-card {
    flex: 0 0 calc(100% - 80px);
    max-width: 500px;
    scroll-snap-align: center;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: normal;
    display: inline-block;
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.design-image {
    position: relative;
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    overflow: hidden;
}

.design-image img {
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.design-info {
    padding: 1.25rem;
    background: transparent;
}

.design-info h4 {
    color: var(--primary-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-align: center;
}

.design-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.design-price {
    background: var(--accent-red);
    color: var(--primary-white);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
}

.design-order {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-align: center;
}

.design-order:hover {
    background: var(--accent-red);
    color: var(--primary-white);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--primary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: rgba(31, 36, 48, 0.72);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
}

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

.about-card {
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.about-card-inner .about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-white);
}

.about-card h3 {
    font-size: 1.25rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--primary-black) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(31, 36, 48, 0.72);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-white);
}

.contact-item p {
    color: rgba(31, 36, 48, 0.72);
    font-size: 0.95rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(31, 36, 48, 0.05);
    border: 1px solid rgba(31, 36, 48, 0.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

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

.form-group label {
    display: block;
    color: var(--primary-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(31, 36, 48, 0.05);
    border: 1px solid rgba(31, 36, 48, 0.14);
    border-radius: 12px;
    color: var(--primary-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(31, 36, 48, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(31, 36, 48, 0.44);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--primary-white);
}

.form-group i {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    color: rgba(31, 36, 48, 0.44);
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group input:focus ~ i,
.form-group textarea:focus ~ i {
    color: var(--accent-red);
}

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

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-red);
    color: var(--primary-white);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.submit-btn i {
    position: static;
    color: inherit;
}

/* Footer */
footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #11151f 0%, #1f2939 40%, #121922 100%);
    background-image: radial-gradient(circle at 16% 18%, rgba(255, 148, 142, 0.14), transparent 22%),
                      radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.08), transparent 20%),
                      linear-gradient(145deg, #11151f 0%, #1f2939 40%, #121922 100%);
    background-blend-mode: screen, normal;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(231, 122, 99, 0.28);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 26%),
                radial-gradient(circle at 20% 80%, rgba(198, 63, 63, 0.08), transparent 12%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(233, 238, 247, 0.78);
    margin: 1.5rem 0;
    max-width: 300px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fdf8ef;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-left: 0.75rem;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-text span {
    color: var(--accent-red);
}

.footer-tagline {
    font-size: 0.65rem;
    color: rgba(240, 244, 252, 0.82);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.95;
    margin-left: 0.5rem;
    align-self: center;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdf8ef;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #c63f3f, #e77a63);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff5e7;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(226, 234, 248, 0.78);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
    color: rgba(223, 231, 244, 0.76);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(223, 231, 244, 0.76);
    font-size: 0.9rem;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 4rem; }
    .section-title { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3.5rem; }
    .hero-description { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .hero-image { display: none; }
    .about-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 2rem; }

    .container {
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(246, 241, 232, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .nav-cta-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-link {
        color: #1f2430;
        font-size: 1.2rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    header .cta-button {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-cta-mobile .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.25rem;
        margin: 0 auto;
        border-radius: 999px;
        font-size: 1rem;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons,
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .work-grid { grid-template-columns: 1fr; }
    .work-large { grid-column: span 1; grid-row: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    /* Mobile Carousel Styles */
    .website-carousel,
    .design-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
        margin: 0;
    }

    .website-card {
        flex: 0 0 92%;
        scroll-snap-align: center;
        padding: 2rem 1.25rem;
    }

    .design-card {
        flex: 0 0 92%;
        scroll-snap-align: center;
    }

    .website-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .website-card h3 {
        font-size: 1.4rem;
    }

    .website-price {
        font-size: 1.6rem;
    }

    .website-features {
        margin-bottom: 1rem;
    }

    .website-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .website-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .design-image {
        min-height: 200px;
    }

    .design-image img {
        max-height: 250px;
    }

    .design-info h4 {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

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

    .skill-card {
        padding: 1.5rem 1rem;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .skill-card h3 {
        font-size: 1.1rem;
    }

    .skill-percent {
        font-size: 1.25rem;
    }

    .skill-tools li {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .pricing-header .price .amount {
        font-size: 1.5rem;
    }

    .pricing-features {
        margin-bottom: 1rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }

    .pricing-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Recent Work - Poster Cards */
.recent-work {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, #0d0d0d 100%);
}

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

.poster-card {
    background: rgba(31, 36, 48, 0.03);
    border: 1px solid rgba(31, 36, 48, 0.11);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.poster-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
}

.poster-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.poster-card:hover .poster-image img {
    transform: scale(1.1);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-card:hover .poster-overlay {
    opacity: 1;
}

.poster-actions {
    display: flex;
    gap: 1rem;
}

.poster-btn {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.poster-card:hover .poster-btn {
    transform: translateY(0);
    opacity: 1;
}

.poster-card:hover .poster-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.poster-card:hover .poster-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.poster-btn:hover {
    background: var(--primary-white);
    color: var(--accent-red);
    transform: scale(1.1) !important;
}

.poster-info {
    padding: 1.5rem;
}

.poster-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 20, 60, 0.15);
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.poster-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
    transition: color 0.3s ease;
}

.poster-card:hover .poster-info h4 {
    color: var(--accent-red);
}

.poster-info p {
    color: rgba(31, 36, 48, 0.62);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

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

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

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

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

    .section-title {
        font-size: 1.65rem;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 16px;
        font-size: 1.65rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .design-price-row,
    .website-price-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
