:root {
    /* Modern Dark Theme Palette (Slate + Teal/Cyan) */
    --primary-color: #2dd4bf; /* Teal 400 - Vibrant/Modern */
    --secondary-color: #0d9488; /* Teal 600 */
    --accent-color: #38bdf8; /* Sky 400 - Tech/AI feel */
    --gradient-bg: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 100%);
    
    /* Dark Mode Colors */
    --text-color: #f1f5f9; /* Slate 100 */
    --light-text: #94a3b8; /* Slate 400 */
    --background-color: #0f172a; /* Slate 900 */
    --section-bg: #1e293b; /* Slate 800 */
    --dark-bg: #020617; /* Slate 950 */
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Shadows */
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    --glow: 0 0 20px rgba(45, 212, 191, 0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background-color);
    position: relative;
}

#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647; /* Max z-index to stay on top */
    pointer-events: none;
    display: block;
    mix-blend-mode: normal; /* Restored to normal for clear cursor visibility */
    opacity: 1; /* Restored full opacity */
}

@media (max-width: 992px) {
    #smoke-canvas {
        display: none; /* Hide on mobile via CSS */
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem; /* Fixed: Removed absolute centering */
    color: white;
    display: block; /* Fixed: Changed from inline-block */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-bg);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: var(--glow);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-bg);
    color: #0f172a; /* Dark text for contrast on bright button */
    border: none;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.5);
}

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

.btn-secondary:hover {
    background-color: rgba(45, 212, 191, 0.1);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

/* Header */
header {
    background-color: rgba(15, 23, 42, 0.9); /* Dark semi-transparent */
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--light-text);
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 100%);
    color: white !important;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
    background-color: #20bd5a;
}

.btn-nav {
    background: var(--gradient-bg);
    color: #0f172a !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: var(--glow);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

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

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-height: 500px;
    object-fit: cover;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Background blob behind image */
.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    border-radius: 24px;
    top: 20px;
    right: -20px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(20px);
    transition: all 0.3s ease;
}

.hero-image:hover::after {
    top: 15px;
    right: -15px;
    opacity: 0.3;
}


.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1px;
}

.hero h1 span {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}

.sub-headline strong {
    color: white;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Trust Signals */
.trust-signals {
    padding: 30px 0;
    background-color: var(--section-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    align-items: center;
}

.trust-item {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--light-text);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

.trust-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Services */
.services {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.center-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-card {
    background: var(--section-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card ul li i {
    color: var(--background-color);
    font-size: 0.8rem;
    background: var(--primary-color);
    padding: 4px;
    border-radius: 50%;
}

/* WordPress Micro Services */
.wordpress-services {
    padding: var(--spacing-lg) 0;
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
}

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

.micro-card {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.micro-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.micro-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.micro-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.micro-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Small Button */
.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-sm:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* Extra Small Button (Minor) */
.btn-xs {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.85rem;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: var(--primary-color);
    border-radius: 30px;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-xs:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Featured Work */
.featured-work {
    padding: var(--spacing-lg) 0;
    background-color: var(--section-bg);
}

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

.work-item {
    background: var(--dark-bg);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.work-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-bg);
}

.work-item h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.work-item p {
    color: var(--light-text);
}

/* Process */
.process {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Connector Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 60px; /* Aligns with center of 60px circle + 30px padding */
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(45, 212, 191, 0.2);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px 15px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--background-color); /* Matches section bg to "cut" the line */
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.step h3 {
    color: white;
}

.step p {
    color: var(--light-text);
}

/* Why Choose Me */
.why-choose-me {
    padding: var(--spacing-lg) 0;
    background-color: var(--section-bg);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason {
    flex: 1 1 300px;
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.reason:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.15);
    transform: translateX(5px);
}

.reason i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.reason span {
    font-weight: 500;
    color: white;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-lg) 0;
    background: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px; /* Space between cards */
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards visible: (100% - 2 gaps) / 3 */
    max-width: calc((100% - 60px) / 3);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 cards visible */
        max-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* 1 card visible */
        max-width: 100%;
    }
    
    .testimonials-slider-wrapper {
        flex-direction: column; /* Stack controls on mobile or keep them side? Better relative */
        position: relative;
    }
    
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slider-btn.prev-btn {
        left: -10px;
    }
    
    .slider-btn.next-btn {
        right: -10px;
    }
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
}

/* About Me */
.about-me {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background-color: var(--background-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--light-text);
    text-align: center; /* Fixed: Ensure explicit center alignment */
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--dark-bg) 100%);
    color: white;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta .cta-group {
    justify-content: center;
}

.final-cta h2 {
    margin-bottom: 24px;
    color: white;
    font-size: 2.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: var(--light-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Fixed: CTA Buttons Visibility */
.final-cta .btn-primary {
    background: white; /* High contrast against dark bg */
    color: #0f172a;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.final-cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.final-cta .btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.final-cta .btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* FAQ */
.faq {
    padding: var(--spacing-lg) 0;
    background-color: var(--section-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.faq-item.active .toggle-icon {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
    color: var(--light-text);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: var(--dark-bg);
    color: #64748b;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tools & Technologies */
.tools-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--background-color);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 140px;
    padding: 20px;
    background: var(--section-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.tool-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.tool-item span {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

/* Contact Form */
.contact-wrapper {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--section-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 20px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

/* Explicit height for single-line inputs to match custom select */
.form-group input,
.form-group select {
    height: 60px;
    line-height: 58px; /* height - borders */
}

.form-group textarea {
    padding: 18px 20px; /* Restore padding for textarea */
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 20px; /* Changed for vertical centering */
    height: 60px; /* Fixed height to match inputs */
    color: rgba(255, 255, 255, 0.6); /* Placeholder color by default */
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select-trigger.has-value {
    color: white;
}

.custom-select-trigger:after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%20viewBox%3D%220%200%20292.4%20292.4%22%3E%3Cpath%20fill%3D%22%232dd4bf%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger:after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--section-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 15px 20px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover, 
.custom-option.selected {
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary-color);
}

/* Hide original select */
.form-group select {
    display: none;
}

.form-group input:focus,
.custom-select.open .custom-select-trigger,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
    background: rgba(15, 23, 42, 0.8);
}

.contact-form button {
    grid-column: span 2;
    margin-top: 10px;
    width: 100%;
}

.form-message {
    grid-column: span 2;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    color: var(--primary-color);
}

.form-message.error {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Process Steps Responsive */
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        flex: 0 0 45%;
        min-width: 250px;
    }
}

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

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--section-bg);
        padding: 30px 0;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul.active {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 120px;
    }

    /* Mobile Hero Buttons */
    .cta-group {
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Contact Form Mobile */
    .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    /* Process Steps Mobile */
    .process-steps {
        gap: 25px;
    }

    .step {
        flex: 0 0 100%;
        max-width: 400px; /* Prevent too wide on tablets */
        margin: 0 auto;
    }
}