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

/* Page Section Styles for Multi-page Layout */
.page-section {
    padding: 100px 0;
    min-height: calc(100vh - 80px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Color Variables - Green & Blue Theme */
:root {
    --primary-color: #059669;
    --primary-dark: #047857;
    --secondary-color: #6b7280;
    --accent-color: #10b981;
    --light-green: #d1fae5;
    --very-light-green: #f0fdf4;
    --blue-primary: #3b82f6;
    --blue-light: #60a5fa;
    --blue-very-light: #dbeafe;
    --blue-accent: #1d4ed8;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #4b5563;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-green-light: #ecfdf5;
    --bg-blue-light: #eff6ff;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-green: 0 4px 6px -1px rgba(5, 150, 105, 0.1), 0 2px 4px -1px rgba(5, 150, 105, 0.06);
    --shadow-blue: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 2rem;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
    background-color: var(--blue-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Background Shapes and Textures */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

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

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--blue-light);
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

.shape-pricing-1 {
    width: 400px;
    height: 400px;
    background: var(--light-green);
    top: -200px;
    left: -200px;
    animation: float 12s ease-in-out infinite;
}

.shape-pricing-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    bottom: -125px;
    right: -125px;
    animation: float 9s ease-in-out infinite reverse;
}

.texture {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-color) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--accent-color) 1px, transparent 1px);
    background-size: 50px 50px;
}

.texture-1 {
    background-position: 0 0, 25px 25px;
}

.texture-2 {
    background-position: 25px 0, 0 25px;
}

.texture-contact {
    background-image: 
        linear-gradient(45deg, var(--light-green) 25%, transparent 25%),
        linear-gradient(-45deg, var(--light-green) 25%, transparent 25%);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* Hero Section */
.hero {
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, var(--very-light-green) 0%, var(--bg-green-light) 50%, var(--bg-white) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.handcrafted-message {
    text-align: center;
    font-style: italic;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.hero-container {
    width: 60%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-container * {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.brand-highlight {
    color: var(--blue-primary);
    font-weight: 900;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex !important;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    width: 100% !important;
    margin: 0 auto;
}

.hero-buttons .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    display: none;
}

.hero-image {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

.element i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.element-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.element-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

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

@keyframes pulse-bar {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes float-dot {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    33% { transform: translateY(-8px); opacity: 1; }
    66% { transform: translateY(4px); opacity: 0.8; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-icon-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-3deg); }
}

@keyframes float-icon-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
}

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

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Creator Quote Styles */
.creator-quote {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light-green);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border-left: 4px solid var(--primary-color);
    position: relative;
    box-shadow: var(--shadow-light);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.creator-quote blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    font-weight: 500;
}

.creator-quote cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* Feature List Styles */
.feature-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-list .feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-list .feature:hover {
    background: var(--very-light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
}

.feature-list .feature i {
    font-size: 1.5rem;
    color: var(--blue-primary);
    margin-top: 0.25rem;
    min-width: 24px;
}

.feature-list .feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-list .feature p {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

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

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

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--blue-light);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-green);
}

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

.card-header {
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.price-description {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 500;
}

.features-list li i {
    color: var(--blue-primary);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: white;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 2rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price .plus {
    font-size: 2rem;
    vertical-align: top;
    opacity: 0.8;
}

.custom-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.pricing-features li i {
    color: var(--accent-color);
    font-size: 1rem;
    min-width: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content {
    padding-top: 1rem;
}

.step-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--bg-white);
    position: relative;
}

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

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
    font-weight: 500;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

/* Enhanced Contact Submit Button */
.contact-submit {
    position: relative;
    padding: 1.5rem 2.5rem !important;
    font-size: 1.1rem !important;
    min-height: 80px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3) !important;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    margin-top: 1rem;
}

.contact-submit::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.6s ease;
}

.contact-submit:hover::before {
    left: 100%;
}

.contact-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4) !important;
}

.contact-submit i {
    font-size: 1.3rem;
    animation: rocket-bounce 2s infinite;
    flex-shrink: 0;
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.button-main {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.button-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Button Highlight Container */
.button-highlight {
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--very-light-green) 100%);
    border-radius: 16px;
    border: 2px dashed var(--primary-color);
    margin: 1.5rem 0;
}

.button-highlight::before {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    animation: sparkle 2s infinite;
}

.contact-encouragement {
    text-align: center;
    margin-top: 1rem;
}

.contact-encouragement p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    animation: bounce-arrow 2s ease-in-out infinite;
}

.contact-encouragement i {
    margin-right: 0.5rem;
    animation: arrow-point 1.5s ease-in-out infinite;
}

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

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes arrow-point {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--text-dark) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-style: italic;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 8px;
    color: var(--light-green);
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--light-green);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

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

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

    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-top: 1rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        position: relative;
        overflow: hidden;
    }

    .hero-container .mobile-floating-icons {
        display: block; /* Show on mobile */
    }

    /* Add mobile background patterns */
    .hero-container::before {
        content: '';
        position: absolute;
        top: 10%;
        right: -50px;
        width: 100px;
        height: 100px;
        background: linear-gradient(45deg, var(--blue-very-light), transparent);
        border-radius: 50%;
        opacity: 0.3;
        animation: float 8s ease-in-out infinite;
    }

    .hero-content {
        margin-top: 1rem;
        order: 1;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 0.25rem;
        position: relative;
        box-sizing: border-box;
        text-align: center;
    }

    /* Add subtle mobile design elements */
    .hero-content::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--blue-primary));
        border-radius: 2px;
        animation: pulse-bar 3s ease-in-out infinite;
    }

    .hero-content::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 20%;
        width: 8px;
        height: 8px;
        background: var(--light-green);
        border-radius: 50%;
        animation: float-dot 4s ease-in-out infinite;
        box-shadow: 
            40px 10px 0 var(--blue-primary),
            80px -5px 0 var(--accent-color),
            120px 15px 0 var(--blue-light);
    }

    /* Add floating icons for mobile */
    .mobile-floating-icons {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        display: none; /* Hide by default */
    }

    .mobile-floating-icons::before {
        content: '\f0ac'; /* Font Awesome globe icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 15%;
        left: 5%;
        font-size: 1.2rem;
        color: var(--light-green);
        opacity: 0.4;
        animation: float-icon-1 6s ease-in-out infinite;
    }

    .mobile-floating-icons::after {
        content: '\f1b2'; /* Font Awesome cube icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 60%;
        right: 8%;
        font-size: 1rem;
        color: var(--blue-primary);
        opacity: 0.3;
        animation: float-icon-2 8s ease-in-out infinite reverse;
    }

    .hero-visual {
        order: 2;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        display: none; /* Hide the entire visual section on mobile */
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }

    .floating-elements {
        display: none;
    }



    .hero-title {
        font-size: 2.5rem;
        margin-top: 2rem;
        position: relative;
        animation: fade-in-up 1s ease-out;
    }

    .hero-description {
        animation: fade-in-up 1s ease-out 0.2s both;
    }

    .hero-buttons {
        animation: fade-in-up 1s ease-out 0.4s both;
    }

    .hero-buttons {
        justify-content: center !important;
        margin-top: 2rem;
        width: 100%;
        display: flex;
    }

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

    .about-stats {
        justify-content: center;
        gap: 1rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .feature-list .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .creator-quote {
        padding: 1.5rem;
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* Mobile Contact Button */
    .contact-submit {
        padding: 1.2rem 1.5rem !important;
        min-height: 70px;
        gap: 0.8rem;
    }

    .button-main {
        font-size: 1rem !important;
    }

    .button-subtitle {
        font-size: 0.8rem !important;
    }

    .contact-submit i {
        font-size: 1.1rem;
    }

    .button-highlight {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .contact-encouragement p {
        font-size: 0.9rem;
    }

    .benefits-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

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

/* Tablet and medium phone responsive */
@media (max-width: 640px) {
    .hero-container {
        padding-top: 3rem;
        gap: 3rem;
    }

    .hero-content {
        margin-top: 2rem;
    }

    .hero-title {
        margin-top: 1.5rem;
    }

    .hero-visual {
        margin-bottom: 1.5rem;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-icon {
        font-size: 6rem;
    }
}

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

    .hero-container {
        padding-top: 5rem;
        gap: 4rem;
    }

    .hero-content {
        margin-top: 4rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 2.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Form Success/Error States */
.form-success {
    background-color: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-error {
    background-color: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.contact-btn {
  font-size: 1.1rem;
  padding: 0.9rem 1.5rem;
  background-color: #0077ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 119, 255, 0.3);
}

.contact-btn:hover {
  background-color: #005dd1;
}
