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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Custom Properties - Corporate Theme */
:root {
    --primary: #F0AA4A;
    --primary-dark: #e0953a;
    --secondary: #64748b;
    --accent: #F0AA4A;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Updated Text Color Palette */
:root {
    --text-main: #23272F;
    --text-secondary: #495057;
    --text-highlight: #205375;
    --text-accent: #7C4F18;
    --text-on-dark: #F8F9FA;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Main Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0 2rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-item {
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

.nav-link.active {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

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

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Hamburger Animation */
    .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);
    }
}

/* Header & Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 70px; /* Account for fixed header */
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFF5E5 0%, #FCE3C0 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(240,170,74,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(240, 170, 74, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(224, 149, 58, 0.3) 0%, transparent 50%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button.primary {
    background: var(--accent);
    color: var(--text-white);
    border: 2px solid var(--accent);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.image-item:nth-child(1) {
    grid-column: 1 / -1;
    height: 200px;
}

.image-item:nth-child(2),
.image-item:nth-child(3) {
    height: 150px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}

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

.image-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.6);
}

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

.cta-button {
    background: var(--accent);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    position: relative;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* About Us Section */
.about-us {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.about-us h2 {
    color: var(--text-dark);
}

.about-us p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* Our Services Section */
.our-services {
    background: var(--bg-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-item h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-learn-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-learn-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-learn-more:hover::after {
    transform: translateX(5px);
}

.cta-learn-more:hover {
    color: var(--primary);
}

/* How We Work Section */
.how-we-work {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.step-number {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, var(--primary), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Gallery Section */
.gallery {
    background: var(--bg-white);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Us Section */
.contact-us {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.contact-us p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-us form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.contact-us input,
.contact-us select,
.contact-us textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-us input:focus,
.contact-us select:focus,
.contact-us textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-us button {
    background: var(--accent);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-us button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--text-white);
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        width: 100%;
    }

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .how-we-work h2 {
        margin-bottom: 2rem;
    }
    
    .contact-us h2 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .image-item:nth-child(1),
    .image-item:nth-child(2),
    .image-item:nth-child(3) {
        height: 150px;
    }
    
    .hero-container {
        padding: 1.5rem 0.8rem;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        width: 100%;
    }
    
    .hero-actions .cta-button {
        width: 100%;
        text-align: center;
    }
    
    section {
        padding: 2rem 0.8rem;
    }
    
    section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .how-we-work h2 {
        margin-bottom: 1.5rem;
    }
    
    .contact-us h2 {
        margin-bottom: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Scroll Animations */
.service-item,
.step,
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-item.animate,
.step.animate,
.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Professional Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Corporate Notification Styles */
.notification {
    font-family: inherit;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* HERO SECTION COLOR UPDATES */
.hero-content h1 {
    color: var(--text-main);
}
.hero-content h1 .highlight {
    color: var(--text-highlight);
    font-weight: 800;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}
.hero-badge {
    color: var(--text-on-dark);
    background: var(--text-accent);
    border: none;
}
.hero-subtitle {
    color: var(--text-secondary);
}
.hero-stats {
    color: var(--text-main);
}
.stat-number {
    color: var(--text-highlight);
}
.stat-label {
    color: var(--text-secondary);
}
.hero-actions .cta-button.primary {
    background: #23272F;
    color: var(--text-on-dark);
    border: 2px solid #23272F;
}
.hero-actions .cta-button.primary:hover {
    background: var(--text-accent);
    border-color: var(--text-accent);
    color: var(--text-on-dark);
}
.hero-actions .cta-button.secondary {
    background: transparent;
    color: #23272F;
    border: 2px solid #23272F;
}
.hero-actions .cta-button.secondary:hover {
    background: #23272F;
    color: var(--text-on-dark);
    border-color: #23272F;
}
.scroll-indicator,
.scroll-indicator span {
    color: var(--text-main);
}
.scroll-arrow,
.scroll-arrow::after {
    background: var(--text-main);
    border-top: 6px solid var(--text-main);
}
/* End HERO SECTION COLOR UPDATES */

/* Process Workflow Stepper Styles */
.process-workflow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 3rem 0 2rem 0;
    position: relative;
    flex-wrap: nowrap;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 180px;
    max-width: 220px;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(240,170,74,0.10);
    border: 3px solid #fff;
    position: relative;
    z-index: 2;
    transition: background 0.3s;
}

.workflow-step:hover .step-circle {
    background: var(--text-highlight);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.workflow-connector {
    flex: 0 0 40px;
    height: 3px;
    align-self: center;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    margin: 0 0.5rem;
    position: relative;
    top: 22px;
    z-index: 0;
}

@media (max-width: 900px) {
    .process-workflow {
        flex-wrap: wrap;
        gap: 1.5rem 0;
    }
    .workflow-step {
        min-width: 140px;
        max-width: 180px;
        padding: 0 0.5rem;
    }
    .workflow-connector {
        flex: 0 0 20px;
        margin: 0 0.2rem;
    }
}

@media (max-width: 700px) {
    .process-workflow {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 2rem 0 1rem 0;
        padding: 0 1rem;
    }
    .workflow-step {
        flex-direction: row;
        align-items: flex-start;
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem 0;
        gap: 1rem;
    }
    .step-circle {
        margin-bottom: 0;
        margin-right: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    .step-title {
        text-align: left;
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
    }
    .step-desc {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    .workflow-connector {
        width: 3px;
        height: 25px;
        background: linear-gradient(180deg, var(--primary), var(--primary-dark));
        margin: 0 auto;
        top: 0;
    }
}

@media (max-width: 480px) {
    .process-workflow {
        padding: 0 0.5rem;
        margin: 1.5rem 0 0.5rem 0;
    }
    .workflow-step {
        padding: 1.2rem 0;
        gap: 0.8rem;
    }
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    .step-desc {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    .workflow-connector {
        height: 20px;
    }
}

/* Premium Modern Footer Layout */
.site-footer {
  background: #23272F;
  color: #F8F9FA;
  padding: 2.5rem 2rem 1.2rem 2rem;
  font-size: 1rem;
  border-radius: 30px 30px 0 0;
  margin-top: 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 1.2rem auto;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 0;
  min-width: 180px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 0.2rem 0.5rem;
}
.footer-mission {
  font-size: 1.05rem;
  color: #F0AA4A;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1rem;
}
.footer-nav a {
  color: #F8F9FA;
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover {
  background: #F0AA4A;
  color: #23272F;
}
.footer-sep {
  color: #F0AA4A;
  font-weight: bold;
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #F0AA4A;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-brand, .footer-nav, .footer-contact {
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .footer-nav {
    justify-content: center;
  }
}

.service-image {
    text-align: center;
    margin-bottom: 1.2rem;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.08rem;
}
.contact-icon {
    font-size: 1.2rem;
    color: #F0AA4A;
}
.contact-detail a {
    color: var(--text-highlight, #205375);
    text-decoration: underline;
    margin-right: 0.3rem;
    transition: color 0.2s;
}
.contact-detail a:hover {
    color: #F0AA4A;
}

.contact-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(135deg, #F0AA4A 60%, #fff0 100%);
  border-radius: 30px 0 0 30px;
  z-index: 0;
}
.contact-container {
  position: relative;
  display: flex;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(240,170,74,0.10);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  z-index: 1;
}
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(240,170,74,0.10);
}
.contact-info {
  flex: 1 1 300px;
  min-width: 260px;
  padding: 0 1rem 0 0;
  z-index: 2;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}
.contact-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #F0AA4A;
  color: #23272F;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover {
  background: #23272F;
  color: #fff;
}
.contact-form-card {
  flex: 1 1 340px;
  min-width: 280px;
  width: 100%;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.contact-form-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.contact-form-card form {
  width: 100%;
  display: grid;
  gap: 1.1rem;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 1rem;
  transition: border 0.2s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #F0AA4A;
  outline: none;
}
.contact-form-card button {
  background: #F0AA4A;
  color: #23272F;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 1rem 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form-card button:hover {
  background: #23272F;
  color: #fff;
}
@media (max-width: 900px) {
  .contact-accent { display: none; }
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }
  .contact-info, .contact-form-card {
    padding: 0;
    min-width: 0;
  }
  .contact-info h3 {
    font-size: 1.4rem;
  }
  .contact-info p {
    font-size: 1rem;
  }
  .contact-details {
    gap: 0.8rem;
  }
  .contact-detail {
    font-size: 1rem;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 1.2rem 0.8rem;
    margin: 0 0.8rem;
    gap: 1.5rem;
  }
  .contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }
  .contact-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .contact-details {
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }
  .contact-detail {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
  .contact-icon {
    font-size: 1.1rem;
  }
  .contact-form-card {
    padding: 1.5rem 1rem;
  }
  .contact-form-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .contact-form-card form {
    gap: 0.9rem;
  }
  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  .contact-form-card button {
    padding: 0.9rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 1rem 0.6rem;
    margin: 0 0.5rem;
    gap: 1.2rem;
    border-radius: 16px;
  }
  .contact-info h3 {
    font-size: 1.2rem;
  }
  .contact-info p {
    font-size: 0.9rem;
  }
  .contact-details {
    gap: 0.5rem;
  }
  .contact-detail {
    font-size: 0.9rem;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1rem;
  }
  .contact-form-card {
    padding: 1.2rem 0.8rem;
  }
  .contact-form-card h4 {
    font-size: 1rem;
  }
  .contact-form-card form {
    gap: 0.8rem;
  }
  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
  }
  .contact-form-card button {
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }
}

/* Thank You Page Styles */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thank-you-content {
  max-width: 600px;
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 auto 2rem auto;
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.thank-you-content h1 {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 700;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.next-steps {
  text-align: left;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.next-steps h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.thank-you-actions .cta-button {
  min-width: 150px;
}

/* Mobile Responsive Thank You Page */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 2rem;
  }
  
  .thank-you-content p {
    font-size: 1rem;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .thank-you-actions .cta-button {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 1.5rem 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.8rem;
  }
  
  .next-steps {
    padding: 1rem;
  }
}

/* WhatsApp Contact Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-button:active {
    transform: translateY(0);
}

.whatsapp-button svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    white-space: nowrap;
}

/* Mobile Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        gap: 0.3rem;
    }
    
    .whatsapp-button svg {
        width: 18px;
        height: 18px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
    }
}

/* Animation for WhatsApp Button */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-button {
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    animation: none;
}