/*
Theme Name: Pixel Bros
Description: Modern web development agency WordPress theme with React-inspired design
Version: 1.0
Author: Pixel Bros
*/

/* CSS Variables - Matching Lovable Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Core brand colors - HSL format for consistency */
    --brand-coral: hsl(11, 88%, 65%);
    --brand-orange: hsl(24, 95%, 60%);
    --brand-red: hsl(0, 85%, 62%);
    
    /* UI System colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(216, 20%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(216, 20%, 15%);
    --primary: hsl(11, 88%, 65%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 20%, 96%);
    --secondary-foreground: hsl(216, 20%, 15%);
    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(24, 95%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(214, 32%, 91%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(11, 88%, 65%) 0%, hsl(24, 95%, 60%) 30%, hsl(0, 85%, 62%) 70%, hsl(24, 100%, 60%) 100%);
    --gradient-hero-overlay: linear-gradient(135deg, hsla(11, 88%, 65%, 0.3), hsla(24, 95%, 60%, 0.2), hsla(0, 85%, 62%, 0.25), hsla(24, 100%, 50%, 0.3));
    --gradient-section: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(210, 20%, 98%));
    --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%), hsl(210, 20%, 98%));
    --gradient-footer: linear-gradient(135deg, hsla(216, 20%, 8%, 0.95), hsla(216, 30%, 12%, 0.9), hsla(0, 0%, 0%, 0.85));
    --gradient-bold: linear-gradient(45deg, hsla(11, 88%, 65%, 0.9), hsla(24, 95%, 60%, 0.8), hsla(11, 88%, 65%, 0.9));
    
    /* Shadows */
    --shadow-soft: 0 4px 20px hsla(11, 88%, 65%, 0.1);
    --shadow-float: 0 8px 30px hsla(11, 88%, 65%, 0.15);
    --shadow-glow: 0 0 40px hsla(11, 88%, 65%, 0.2);
    --shadow-mega: 0 25px 50px -12px hsla(11, 88%, 65%, 0.4);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Heading styles - Match Lovable */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    color: var(--foreground);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0.5rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: inline-block;
    line-height: 1;
}

.site-logo .logo-img {
    height: 75px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.site-logo:hover .logo-img {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(255, 102, 68, 0.3));
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a,
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-coral);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-link:hover {
    color: white;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile[aria-hidden="false"] {
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-nav-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1rem 2rem;
    background: linear-gradient(135deg, hsl(216, 20%, 8%) 0%, hsl(216, 30%, 12%) 50%, hsl(0, 0%, 0%) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(11, 88%, 65%, 0.1) 0%, hsla(24, 95%, 60%, 0.1) 50%, hsla(0, 85%, 62%, 0.1) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 133, 27, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 102, 68, 0.1) 0%, 
        rgba(255, 133, 27, 0.05) 25%, 
        transparent 50%, 
        rgba(239, 68, 68, 0.05) 75%, 
        rgba(250, 204, 21, 0.1) 100%);
    animation: gradient-shift 8s ease-in-out infinite;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.4) 70%);
}

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

.hero-shape-1 {
    top: 10%;
    left: 10%;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(255, 102, 68, 0.3), rgba(255, 133, 27, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    top: 60%;
    right: 10%;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(250, 204, 21, 0.3));
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    top: 30%;
    left: 80%;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.4), rgba(255, 102, 68, 0.2));
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1000px;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-title-gradient {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-x 3s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(215, 16%, 47%);
    margin: 2rem auto;
    max-width: 600px;
    line-height: 1.6;
}

/* Phone CTA Styles */
.phone-cta-wrapper {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

.phone-cta-card {
    background: var(--gradient-hero);
    padding: 1px;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-mega);
    transition: all 0.5s ease;
    display: inline-block;
}

.phone-cta-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px hsla(11, 88%, 65%, 0.4);
}

.phone-cta-content {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-cta-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: white;
}

.phone-cta-card:hover .phone-cta-icon {
    transform: rotate(12deg);
}

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

.phone-cta-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.phone-cta-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-cta-number:hover {
    color: var(--brand-coral);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 500px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: hsl(215, 16%, 47%);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-cta {
    padding: 1rem 2rem;
    background: var(--gradient-hero);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-mega);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-mega);
}

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

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

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 800px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 0;
    transition: transform 0.5s ease;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-glow {
    opacity: 0.2;
    animation: float-bg 3s ease-in-out infinite;
}

.feature-card-content {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    z-index: 2;
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover .feature-card-content {
    border-color: rgba(255, 102, 68, 0.4);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-hero);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--brand-coral);
}

.feature-description {
    color: hsl(215, 16%, 47%);
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.6);
}

/* Services section styles - Match Lovable exactly */
.services {
    padding: 80px 0;
    background: var(--gradient-section);
}

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

.services-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeIn 0.6s ease-out;
}

.services-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.services-logo img {
    height: 64px;
    width: auto;
    opacity: 0.8;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--foreground);
}

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

.services-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--gradient-card);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 0;
    animation: slideUp 0.8s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: 50%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.service-icon svg,
.service-icon i {
    width: 32px;
    height: 32px;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--foreground);
    font-size: 0.875rem;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background: var(--gradient-section);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeIn 0.6s ease-out;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--gradient-card);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 0;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

.form-content {
    padding: 32px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--foreground);
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--foreground);
}

.form-input, .form-textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 68, 0.1);
}

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

.btn-submit {
    padding: 12px 24px;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

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

.info-card, .why-choose-card {
    background: var(--gradient-card);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 32px;
    animation: slideUp 0.8s ease-out;
}

.why-choose-card {
    background: var(--gradient-hero);
    color: white;
    animation-delay: 0.2s;
}

.info-title, .choose-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--foreground);
}

.choose-title {
    color: white;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--foreground);
}

.contact-value {
    color: var(--muted-foreground);
    margin: 0;
}

.choose-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .form-content, .info-card, .why-choose-card {
        padding: 24px;
    }
}

/* Benefits section - Match Lovable */
.benefits {
    margin-top: 80px;
    text-align: center;
}

.benefits-header {
    margin-bottom: 48px;
}

.benefits-header h3 {
    font-size: 2.25rem;
    color: var(--foreground);
    margin-bottom: 0;
    font-weight: 700;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    animation: scaleIn 0.5s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.4s; }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: 50%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.benefit-icon:hover {
    transform: scale(1.1);
}

.benefit-icon svg,
.benefit-icon i {
    width: 40px;
    height: 40px;
    color: white;
    font-size: 2.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--foreground);
}

.benefit-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* Portfolio section styles - Match Lovable exactly */
.portfolio {
    padding: 80px 0;
    background: var(--gradient-section);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 160px;
    height: 160px;
    background: var(--gradient-bold);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 160px;
    left: 20px;
    width: 96px;
    height: 96px;
    background: var(--gradient-bold);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.portfolio-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.portfolio-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    animation: slideUp 0.8s ease-out;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-mega);
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-info,
.project-content {
    padding: 16px;
}

.project-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero-overlay);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.project-card:hover .project-overlay {
    opacity: 0.9;
}

.overlay-content {
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.overlay-content p {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        hsl(216, 20%, 8%) 0%, 
        hsl(216, 30%, 12%) 50%, 
        hsl(0, 0%, 0%) 100%);
    color: white;
    overflow: hidden;
    padding: 5rem 0 2rem;
}

/* Animated Background Elements */
.footer-animated-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.footer-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        hsla(11, 88%, 65%, 0.3), 
        hsla(24, 95%, 60%, 0.3)
    );
    animation: gradient 8s ease-in-out infinite;
}

.footer-bg-shape-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 10rem;
    height: 10rem;
}

.footer-bg-shape-2 {
    bottom: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    animation-delay: 1.5s;
}

.footer-bg-shape-3 {
    top: 50%;
    left: 33.333333%;
    width: 8rem;
    height: 8rem;
    animation-delay: 0.8s;
}

.footer-bg-shape-4 {
    bottom: 33.333333%;
    left: 20%;
    width: 6rem;
    height: 6rem;
    animation-delay: 2.2s;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Content */
.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Footer Logo */
.footer-logo {
    height: 6rem;
    width: auto;
    filter: brightness(0) invert(1);
    drop-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.625;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.social-link:hover {
    color: var(--brand-coral);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Title */
.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* Footer Services */
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-service {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-coral);
    flex-shrink: 0;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Emergency Support */
.emergency-support {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        var(--brand-coral), 
        var(--brand-orange)
    );
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.emergency-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.emergency-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Back to Top */
.back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.back-to-top:hover {
    color: var(--brand-coral);
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradient-x {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

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

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

@keyframes gradient {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 5rem 0.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .feature-card-content {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About Section Styles */
.about {
    padding: 6rem 0;
    background: var(--gradient-section);
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 10rem;
}

.about-text h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.about-paragraph {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-float);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 10rem;
}

.feature-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-hero);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.additional-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 6rem;
}

.benefit-item {
    margin-bottom: 5rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--foreground);
}

.benefit-icon {
    margin-right: 0.75rem;
    color: var(--primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.benefit-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.contact-card {
    background: var(--gradient-hero);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-text {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-info {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.contact-info p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 5rem 0;
    background: hsl(var(--background));
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 24rem;
    display: flex;
    align-items: center;
}

.testimonial-content {
    width: 100%;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.1;
}

.quote-icon {
    width: 4rem;
    height: 4rem;
    color: hsl(var(--primary));
}

.testimonials-wrapper {
    width: 100%;
    padding: 4rem;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(var(--primary) / 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-company {
    color: hsl(var(--muted-foreground));
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(var(--background) / 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev {
    left: 1rem;
}

.nav-button.next {
    right: 1rem;
}

.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: hsl(var(--muted));
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot.active {
    background: hsl(var(--primary));
    transform: scale(1.2);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-slide p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-slide .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-slide img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 102, 68, 0.2);
}

.testimonial-slide h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.testimonial-slide .text-left {
    text-align: left;
}

.testimonial-slide .text-left p {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin: 0;
    font-style: normal;
}

/* Navigation buttons */
#prevBtn, #nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 68, 0.2);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

#prevBtn {
    left: 1rem;
}

#nextBtn {
    right: 1rem;
}

#prevBtn:hover, #nextBtn:hover {
    background: var(--primary);
    color: white;
}

/* Dots indicator */
#dotsContainer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Star ratings */
.testimonial-slide .flex.justify-center.mb-6 {
    margin-bottom: 1.5rem;
}

.testimonial-slide svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #facc15;
    fill: currentColor;
}

/* Additional responsive styles for new sections */
@media (max-width: 768px) {
    .about-content,
    .additional-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-wrapper {
        padding: 2rem;
    }
    
    .testimonial-slide p {
        font-size: 1.125rem;
    }
    
    #prevBtn, #nextBtn {
        width: 2rem;
        height: 2rem;
    }
    
    #prevBtn {
        left: 0.5rem;
    }
    
    #nextBtn {
        right: 0.5rem;
    }
}

/* Enhanced Responsive Design System */
/* Mobile First - Comprehensive Responsive Styles */

/* Base responsive utilities */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Section Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-card,
    .info-card,
    .why-choose-card {
        margin: 0;
    }
    
    .form-content {
        padding: 24px;
    }
    
    /* Testimonials Mobile */
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-wrapper {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .nav-button {
        width: 2rem;
        height: 2rem;
    }
    
    .nav-button.prev {
        left: 0.5rem;
    }
    
    .nav-button.next {
        right: 0.5rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-content,
    .additional-benefits {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 6rem;
    }
    
    .benefit-item {
        margin-bottom: 3rem;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Hero Ultra Mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.875rem;
    }
    
    /* Services Ultra Mobile */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    /* Testimonials Ultra Mobile */
    .testimonials-wrapper {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-image {
        width: 3rem;
        height: 3rem;
    }
    
    /* Contact Ultra Mobile */
    .form-content {
        padding: 1.5rem;
    }
    
    .info-card,
    .why-choose-card {
        padding: 1.5rem;
    }
}

/* Perfect Centering System */
.section,
.services,
.portfolio,
.about,
.testimonials,
.contact {
    text-align: center;
}

.section-header,
.services-header,
.portfolio-header,
.testimonials-header,
.about-header,
.contact-header {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* Grid Centering */
.services-grid,
.benefits-grid,
.portfolio-grid,
.features-grid,
.about .features-grid {
    display: grid;
    place-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-card,
.benefit-item,
.project-card,
.feature-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Contact Grid Centering */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Testimonials Centering */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* About Section Centering */
.about-content,
.additional-benefits {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Enhanced Button Responsiveness */
.btn-cta,
.btn-submit {
    min-height: 48px;
    touch-action: manipulation;
}

/* Enhanced Touch Targets */
@media (hover: none) and (pointer: coarse) {
    .nav-button {
        width: 44px;
        height: 44px;
    }
    
    .dot {
        width: 20px;
        height: 20px;
    }
    
    .service-card,
    .project-card,
    .feature-card {
        min-height: 48px;
    }
}