/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

:root {
    /* Brand Colors - Soft Pink Primary with Gold/Yellow Accents (Matching Brand Identity) */
    --primary-color: #f48fb1;
    --primary-dark: #ec407a;
    --primary-light: #f8bbd0;
    --accent-color: #ffc107;
    --accent-dark: #ffa000;
    --accent-light: #ffd54f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 8px 30px rgba(244, 143, 177, 0.25);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-condensed: 'Roboto Condensed', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(244, 143, 177, 0.15);
    border-bottom-color: rgba(244, 143, 177, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fef5f9;
    background-image:
        linear-gradient(90deg, rgba(244, 143, 177, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(244, 143, 177, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 193, 7, 0.04) 0%, rgba(244, 143, 177, 0.04) 100%);
    background-size: 24px 24px, 24px 24px, cover;
    background-position: 0 0, 0 0, center;
    background-repeat: repeat, repeat, no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 143, 177, 0.55) 0%, rgba(236, 64, 122, 0.6) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.2) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 0 20px;
    animation: heroFadeIn 1s ease-out;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: badgeFadeIn 1s ease-out 0.1s both;
}

.hero-badge svg {
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-family: var(--font-condensed);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
    animation: headlineSlideIn 1s ease-out 0.2s both;
}

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

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    animation: subheadlineFadeIn 1s ease-out 0.4s both;
}

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

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: featuresFadeIn 1s ease-out 0.5s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-feature svg {
    color: var(--accent-color);
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.5));
    flex-shrink: 0;
}

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

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: ctaSlideUp 1s ease-out 0.6s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero svg {
    transition: transform 0.3s ease;
    width: 22px;
    height: 22px;
}

.btn-hero:hover svg {
    transform: translateX(4px);
}

/* Enhanced Call Button Visibility */
.btn-secondary.btn-hero {
    font-size: 1.1rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border: 2.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 193, 7, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary.btn-hero svg {
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.8));
}

.btn-secondary.btn-hero:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 193, 7, 0.5);
    transform: translateY(-3px) scale(1.08);
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--text-dark);
    font-size: 17px;
    padding: 18px 48px;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    box-shadow: 0 8px 35px rgba(255, 193, 7, 0.7), 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 17px;
    padding: 16px 48px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: trustFadeIn 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-icon svg {
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.trust-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.trust-text span {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 3;
    cursor: pointer;
}

.hero-scroll-indicator svg {
    color: var(--accent-color);
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.5));
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--section-padding);
}

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

.section-header h2 {
    font-family: var(--font-condensed);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, #fefefe 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(255, 193, 7, 0.2) 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.service-card h3 {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Our Work Section
   ============================================ */

.work {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
    position: relative;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.work-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.work-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    background-color: var(--bg-white);
    min-height: 600px;
}

.work-item {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.work-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 40px;
    min-height: 500px;
}

.work-item img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.work-caption {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 30px 40px;
    text-align: center;
    color: var(--bg-white);
}

.work-caption h3 {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-white);
}

.work-caption p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.work-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.work-carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.work-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.work-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.work-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.work-dot:hover {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

.work-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

/* ============================================
   About Section
   ============================================ */

.about {
    background-color: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-condensed);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

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

.feature-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-condensed);
}

.feature-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-skills {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 3px solid var(--border-color);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.03) 0%, rgba(255, 193, 7, 0.03) 100%);
    padding: 50px 30px;
    border-radius: 12px;
    margin-left: -30px;
    margin-right: -30px;
}

.about-skills h3 {
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.about-skills h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--bg-white) 0%, #fefefe 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s;
}

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.2);
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
}

.checkmark {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.3));
    transition: all 0.3s ease;
}

.skill-item:hover .checkmark {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

.skill-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    background-color: var(--bg-light);
}

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

.testimonials-container {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    background: linear-gradient(135deg, var(--bg-white) 0%, #fefefe 100%);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.testimonial-card.active::before {
    transform: scaleX(1);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-dark);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.slider-btn-prev {
    left: -70px;
}

.slider-btn-next {
    right: -70px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, #fefefe 100%);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(244, 143, 177, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-logo-wrapper {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(244, 143, 177, 0.15);
}

.contact-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    transition: transform 0.3s ease;
}

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

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(244, 143, 177, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(244, 143, 177, 0.1);
    transition: all 0.3s ease;
}

.contact-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:hover {
    padding-left: 5px;
}

.contact-item h3 {
    font-family: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 20px;
}

.social-links h3 {
    font-family: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-links-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    font-weight: 500;
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(244, 143, 177, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.2);
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15), 0 2px 8px rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

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

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

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 28px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
        margin-bottom: 28px;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 44px;
    }
    
    .hero-features {
        gap: 24px;
        margin-bottom: 44px;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-feature svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-primary {
        font-size: 16px;
        padding: 16px 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 0;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    /* Hide trust indicators on mobile */
    .hero-trust-indicators {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-carousel-wrapper {
        padding: 0 50px;
    }
    
    .work-carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .work-carousel-prev {
        left: -10px;
    }
    
    .work-carousel-next {
        right: -10px;
    }
    
    .work-image-wrapper {
        padding: 30px 20px;
        min-height: 400px;
    }
    
    .work-item img {
        max-height: 400px;
    }
    
    .work-caption {
        padding: 25px 20px;
    }
    
    .work-caption h3 {
        font-size: 1.5rem;
    }
    
    .work-caption p {
        font-size: 1rem;
    }
    
    .testimonials-slider {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn-prev {
        left: -10px;
    }
    
    .slider-btn-next {
        right: -10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-card {
        padding: 40px 30px;
    }
    
    .contact-logo {
        height: 50px;
    }
    
    .contact-logo-wrapper {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .social-links-wrapper {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        min-width: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    .about-skills h3 {
        font-size: 1.5rem;
    }
    
    .hero-background {
        background-attachment: scroll;
        animation: none;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(244, 143, 177, 0.45) 0%, rgba(236, 64, 122, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        gap: 6px;
        margin-bottom: 24px;
    }
    
    .hero-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-headline {
        font-size: 2rem;
        letter-spacing: -0.3px;
        margin-bottom: 24px;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .hero-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hero-feature {
        font-size: 0.8rem;
    }
    
    .hero-feature svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    /* Trust indicators hidden on mobile */
    .hero-trust-indicators {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .work-carousel-wrapper {
        padding: 0 20px;
    }
    
    .work-image-wrapper {
        padding: 20px 15px;
        min-height: 300px;
    }
    
    .work-item img {
        max-height: 300px;
    }
    
    .work-caption {
        padding: 20px 15px;
    }
    
    .work-caption h3 {
        font-size: 1.3rem;
    }
    
    .work-caption p {
        font-size: 0.95rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        background-attachment: scroll;
        animation: none !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

