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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: contain;
    background: transparent;
    display: block;
    max-width: 200px;
}

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

.logo-image:not([src]),
.logo-image[src=""] {
    background: #e2e8f0;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 8px;
    display: block;
    max-width: 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.footer-logo-image:not([src]),
.footer-logo-image[src=""] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e2e8f0;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #e2e8f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature i {
    color: #e2e8f0;
    font-size: 1.2rem;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #e2e8f0;
    color: #1a202c;
}

.btn-primary:hover {
    background: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 232, 240, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2d3748;
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #e2e8f0;
}

.btn-secondary-outline:hover {
    background: #e2e8f0;
    color: #2d3748;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4a5568;
    border: 2px solid #4a5568;
}

.btn-outline:hover {
    background: #4a5568;
    color: white;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    background: #f3f4f6;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.card-dots span:first-child {
    background: #ef4444;
}

.card-dots span:nth-child(2) {
    background: #fbbf24;
}

.card-dots span:last-child {
    background: #10b981;
}

.card-content {
    padding: 1.5rem;
}

.mock-website {
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.mock-header {
    height: 40px;
    background: #2563eb;
    margin-bottom: 1rem;
}

.mock-content {
    padding: 1rem;
}

.mock-text {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mock-text.short {
    width: 60%;
}

.mock-image {
    height: 60px;
    background: #d1d5db;
    border-radius: 4px;
    margin-top: 1rem;
}

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

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 60px;
    }
}

@media (max-width: 480px) {
    section[id] {
        scroll-margin-top: 50px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f7fafc;
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Portfolio Preview Section */
.portfolio-preview {
    padding: 80px 0;
    background: #f7fafc;
}

@media (max-width: 768px) {
    .portfolio-preview {
        padding: 40px 0;
    }
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-preview-item {
    transition: transform 0.3s ease;
}

.portfolio-preview-item:hover {
    transform: translateY(-5px);
}

.portfolio-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-preview-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-preview-image {
    height: 100px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.portfolio-preview-content {
    padding: 1.5rem;
    text-align: center;
}

.portfolio-preview-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.portfolio-preview-content p {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-preview-cta {
    text-align: center;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: white;
}

/* Process/How It Works Section */
.process {
    padding: 80px 0;
    background: white;
}

@media (max-width: 768px) {
    .process {
        padding: 40px 0;
    }
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0.5rem;
}

.step-number {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
    margin: 0 auto 0.75rem auto;
}

.step-content {
    background: #f7fafc;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.5rem;
    color: #4a5568;
    transition: color 0.3s ease;
}

.step-content:hover .step-icon i {
    color: white;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .process-cta {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.process-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    margin: 0;
    border: 1px solid #bbf7d0;
    white-space: nowrap;
}

.process-highlight i {
    color: #059669;
    font-size: 1.125rem;
}

.process-highlight span {
    color: #065f46;
    font-weight: 500;
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .step-content {
        padding: 1.25rem 1rem;
    }
    
    .process-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
    
    .process-cta {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
}

/* Add connecting line for desktop */
@media (min-width: 769px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 20px;
        left: calc(12.5% + 20px);
        right: calc(12.5% + 20px);
        height: 2px;
        background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 50%, #e2e8f0 100%);
        z-index: 1;
    }
    
    .process-timeline {
        position: relative;
        align-items: flex-start;
    }
    
    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

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

.testimonials-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .testimonials-stats .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .packages {
        padding: 40px 0;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: #4a5568;
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a5568;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 0.5rem;
}

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a5568;
    display: block;
}

.package-price .period {
    color: #6b7280;
    font-size: 0.875rem;
}

.package-pages {
    color: #6b7280;
    font-weight: 500;
}

.package-features {
    margin-bottom: 2rem;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.package-features i {
    color: #10b981;
    font-size: 0.875rem;
}

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

/* Portfolio Hero Section */
.portfolio-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.portfolio-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Active Navigation Link */
.nav-link.active {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: white;
    position: relative;
}


.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .portfolio {
        padding: 40px 0;
    }
    
    .portfolio-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-item:nth-child(9) { animation-delay: 0.9s; }
.portfolio-item:nth-child(10) { animation-delay: 1.0s; }
.portfolio-item:nth-child(11) { animation-delay: 1.1s; }
.portfolio-item:nth-child(12) { animation-delay: 1.2s; }
.portfolio-item:nth-child(13) { animation-delay: 1.3s; }
.portfolio-item:nth-child(14) { animation-delay: 1.4s; }
.portfolio-item:nth-child(15) { animation-delay: 1.5s; }
.portfolio-item:nth-child(16) { animation-delay: 1.6s; }
.portfolio-item:nth-child(17) { animation-delay: 1.7s; }
.portfolio-item:nth-child(18) { animation-delay: 1.8s; }
.portfolio-item:nth-child(19) { animation-delay: 1.9s; }
.portfolio-item:nth-child(20) { animation-delay: 2.0s; }

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.portfolio-card {
    background: white;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a5568, #2d3748, #4a5568);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.portfolio-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.portfolio-image {
    height: 140px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.portfolio-card:hover .portfolio-image::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-content h3 {
    color: #4a5568;
}

.portfolio-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 500;
}

.portfolio-link {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.portfolio-link::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 ease;
}

.portfolio-link:hover::before {
    left: 100%;
}

.portfolio-link:hover {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f7fafc;
}

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

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #6b7280;
}

.contact-details a {
    color: #4a5568;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a5568;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 80px 0 1.5rem 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.75rem 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        display: block;
        width: 100%;
        border-radius: 0;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
        max-width: 100%;
    }

    .hero-content {
        order: 1;
        padding: 0 5px;
    }

    .hero-image {
        order: 2;
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        line-height: 1.4;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.3rem 0;
        background: transparent;
        border: none;
        text-align: center;
        font-size: 0.85rem;
    }

    .feature i {
        font-size: 1rem;
        color: #e2e8f0;
        min-width: 16px;
    }

    .feature span {
        font-size: 0.85rem;
        font-weight: 500;
        color: #e2e8f0;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: #e2e8f0;
        color: #1a202c;
        box-shadow: 0 4px 15px rgba(226, 232, 240, 0.3);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .btn-secondary-outline {
        background: transparent;
        color: #e2e8f0;
        border: 2px solid #e2e8f0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-text {
        margin-bottom: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1rem;
    }

    .stat h3 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .stat p {
        font-size: 0.875rem;
    }

    .about-image {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .package-card.featured {
        transform: none;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .navbar {
        padding: 0.3rem 0;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    }
    
    .nav-container {
        padding: 0 15px;
        min-height: 45px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .floating-buttons {
        bottom: 12px;
        right: 12px;
        gap: 8px;
        flex-direction: column-reverse;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
    
    .floating-btn .tooltip {
        display: none;
    }
    
    .floating-btn:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 12px;
        gap: 1.2rem;
    }

    .hero-content {
        padding: 0 3px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
        line-height: 1.3;
    }

    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }

    .feature {
        padding: 0.2rem 0;
        gap: 0.4rem;
        font-size: 0.8rem;
        background: transparent;
        border: none;
    }

    .feature i {
        font-size: 0.9rem;
        min-width: 14px;
        color: #e2e8f0;
    }

    .feature span {
        font-size: 0.8rem;
        color: #e2e8f0;
    }

    .hero-buttons {
        gap: 0.5rem;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .hero-image {
        margin-top: 0.3rem;
    }

    .hero-card {
        max-width: 240px;
        margin: 0 auto;
    }

    .service-card,
    .package-card {
        padding: 1.5rem;
    }

    .package-card.featured {
        transform: none;
        margin-top: 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .floating-buttons {
        bottom: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .floating-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .chat-widget {
        left: 8px;
        bottom: 8px;
    }
    
    .chat-toggle {
        width: 38px;
        height: 38px;
    }
    
    .chat-toggle i {
        font-size: 1rem;
    }
    
    .chat-window {
        width: calc(100vw - 16px);
        left: 8px;
        right: 8px;
        height: 55vh;
        max-height: 350px;
    }
    
    .navbar {
        padding: 0.25rem 0;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0 12px;
        min-height: 40px;
    }
    
    .hamburger {
        padding: 4px;
    }
    
    .bar {
        width: 18px;
        height: 2px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .services,
    .process,
    .testimonials,
    .about,
    .contact {
        padding: 50px 0;
    }
    
    .packages {
        padding: 50px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.package-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.chat-toggle i {
    color: white;
    font-size: 1.5rem;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

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

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 4px;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-status {
    font-size: 0.75rem;
    color: #a7f3d0;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 16px;
}

.message-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.message-content p + p {
    margin-top: 0.5rem;
}

.message-time {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
    align-self: flex-start;
}

.user-message .message-time {
    align-self: flex-end;
}

.chat-quick-replies {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-reply {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.quick-reply:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input-area input:focus {
    border-color: #667eea;
}

.chat-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chat-send:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 20px);
        height: 70vh;
        max-height: 500px;
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    .chat-widget {
        left: 20px;
        bottom: 20px;
        transform: none;
    }
    
    .chat-toggle {
        width: 45px;
        height: 45px;
    }
    
    .chat-toggle i {
        font-size: 1.1rem;
    }
    
    .chat-messages {
        padding: 0.75rem;
    }
    
    .message-content {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .quick-reply {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: pulse-whatsapp 2s infinite;
}

.call-btn {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    animation: pulse-call 2s infinite 1s;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.floating-btn:hover::before {
    transform: scale(1);
}

/* Pulse animations */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(74, 85, 104, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(74, 85, 104, 0.6), 0 0 0 10px rgba(74, 85, 104, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(74, 85, 104, 0.3);
    }
}

/* Tooltip */
.floating-btn {
    position: relative;
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn,
    .nav-link,
    .floating-btn,
    .chat-toggle,
    .quick-reply {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better text selection */
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Improve form usability */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #4a5568;
        box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
    }
    
    /* Better spacing for mobile */
    .service-card h3,
    .package-card h3,
    .testimonial-card h3 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .service-card p,
    .package-card p,
    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Improve package cards on mobile */
    .packages-grid {
        gap: 1.5rem;
    }
    
    .package-card {
        margin-bottom: 1rem;
    }
    
    /* Better testimonial layout */
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    /* Improve process steps */
    .process-timeline {
        gap: 1rem;
    }
    
    .step-content {
        padding: 1.25rem 1rem;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Additional mobile optimizations */
    .hero-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .mock-content {
        padding: 0.75rem;
    }
    
    .mock-text {
        height: 6px;
        margin-bottom: 0.4rem;
    }
    
    .mock-image {
        height: 50px;
        margin-top: 0.75rem;
    }
    
    /* Improve mobile grid layouts */
    .services-grid,
    .testimonials-grid,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Better mobile footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile-specific button improvements */
    .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Prevent zoom on input focus for iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Better mobile scroll behavior */
    .chat-messages {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve mobile performance */
    .hero-image,
    .portfolio-image,
    .about-image {
        will-change: transform;
    }
    
    /* Mobile-specific animations */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2d3748;
}
