/* Design 1: Modern & Minimalist */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #1a1a1a;
    --background-color: #ffffff;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 72px 0 48px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 5vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 520px;
    }

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

    .hero-stats {
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.25rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.4rem);
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        padding: 0.85rem 1.25rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.1rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-stats {
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    section {
        padding: 56px 0;
    }

    .contact-form-container {
        padding: 1.75rem;
    }

    .contact-method {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--background-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 36px rgba(20, 24, 62, 0.06);
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem; /* Increased padding for a slightly larger header */
}

/* Mobile-first: Base styles for small screens */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem; /* Reduced padding for mobile to prevent overflow */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-left: 0; /* No shift on mobile to prevent cropping */
}

/* Scoped logo wrap to stack caption below image without affecting header layout */
.logo-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center; /* center caption under image */
    text-decoration: none;
    color: inherit;
    line-height: 1;
    width: fit-content; /* wrapper width equals logo image width */
    max-width: calc(100vw - 2rem); /* Ensure it fits within mobile screen width minus padding */
    margin-top: 0.25rem; /* Bring logo slightly down */
}

.logo-image {
    height: 32px; /* Increased size for mobile */
    width: auto;
    display: block;
    max-width: 100%; /* Prevent image from exceeding container width */
}

.logo-caption {
    font-size: 0.6rem; /* Smaller font for mobile */
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1px;
    width: 100%; /* equal to logo image width via wrapper */
    text-align: center;
    white-space: nowrap;
    overflow: hidden; /* prevent extending beyond logo width */
    text-overflow: ellipsis;
    text-transform: uppercase;
}

/* Ensure no horizontal overflow on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.35) 0%, rgba(195, 207, 226, 0.35) 100%);
    box-shadow: 0 22px 54px rgba(20, 24, 62, 0.14);
}

.navbar.scrolled .logo-image {
    height: 32px; /* Smaller logo on scroll */
}

.navbar.scrolled .nav-container {
    padding: 0.75rem 2rem; /* Smaller padding on scroll */
}

/* Ensure content doesn't overlap header */
body {
    padding-top: 70px; /* Adjust based on header height */
}

/* Desktop and larger screens */
@media (min-width: 768px) {
    .nav-container {
        padding: 1rem 2rem; /* Full padding on desktop */
    }
    
    .nav-logo {
        margin-left: 1rem; /* Shift logo and text slightly to the right on desktop */
    }
    
    .logo-image {
        height: 36px; /* Larger size for desktop */
    }
    
    .logo-caption {
        font-size: 0.72rem; /* Larger font for desktop */
    }
}

@media (min-width: 576px) {
    .nav-container {
        padding: 0.75rem 1.5rem; /* Moderate padding for tablets */
    }
    
    .logo-image { height: 36px; }
    .logo-caption { font-size: 0.68rem; }
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem; /* Smaller than menu labels */
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

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

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

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

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
}

.nav-link.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
    padding: 48px 0 36px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content .container {
    padding-left: 0; /* Removed left padding to align with the edge */
}

.hero-title {
    font-size: 3.5rem; /* Reduced from 4rem for better proportion */
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem; /* Reduced from 1.2rem for better fit */
    margin-bottom: 2.5rem;
    color: #666;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-stats {
    display: inline-flex;
    gap: 2.5rem;
    padding: 1.25rem 1.75rem;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(8px);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.63rem;
    color: #666;
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    right: -80px; /* Moved left to reduce space with hero text */
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: -50px; /* Adjusted for better positioning */
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

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

.floating-card span {
    font-weight: 500;
    color: #1a1a1a;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.card-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.25s;
}

/* Sections */
section {
    padding: 100px 0;
}

.services {
    padding-top: 30px;
}

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

.section-title {
    color: #000000;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.services .section-title {
    color: #1a1a1a; /* Dark for light background */
}

.services .section-subtitle {
    color: #666; /* Gray for light background */
}

.business-types .section-title {
    color: #ffffff; /* White for dark background */
}

.business-types .section-subtitle {
    color: rgba(255, 255, 255, 0.9); /* Light white for dark background */
}

.process .section-title {
    color: #1a1a1a; /* Dark for light background */
}

.process .section-subtitle {
    color: #666; /* Gray for light background */
}

.about .section-title {
    color: #1a1a1a; /* Dark for light background */
}

.about .section-subtitle {
    color: #666; /* Gray for light background */
}

.faq .section-title {
    color: #1a1a1a; /* Dark for light background */
}

.faq .section-subtitle {
    color: #666; /* Gray for light background */
}

.contact .section-title {
    color: #1a1a1a; /* Dark for light background */
}

.contact .section-subtitle {
    color: #666; /* Gray for light background */
}

.testimonials .section-title {
    color: #1a1a1a; /* Dark for light background */
}

.testimonials .section-subtitle {
    color: #666; /* Gray for light background */
}

/* Services Section */
.services .service-title {
    font-size: 1.3rem; /* Reduced from 1.5rem for sleeker look */
}

.services .service-description {
    font-size: 0.9rem; /* Reduced from 1rem for concise text */
}

.services .service-features li {
    font-size: 0.85rem; /* Reduced for sleeker appearance */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; /* Reduced gap for more space */
    padding-left: 2rem;
}

/* Make all service cards have the blue border */
.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color); /* Add blue border to all cards */
    border-top: 2px solid #4169e1;
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-badge {
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-badge.new {
    background: #10b981;
}

.service-title {
    color: #1a1a1a;
    margin-bottom: 1rem;
}



.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}



.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.service-features i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Business Types Section */
.business-types {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.business-types .business-content h3 {
    font-size: 1.3rem; /* Reduced for sleeker look */
}

.business-types .business-content p {
    font-size: 0.9rem; /* Reduced for concise text */
}

.business-types .business-stats span {
    font-size: 0.85rem; /* Reduced for sleeker appearance */
}

@media (min-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

.business-card {
    background: rgba(21, 25, 45, 0.85);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color); /* Add blue border to all business cards */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px);
    background: rgba(29, 35, 64, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.business-image {
    height: 200px;
    overflow: hidden;
}

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

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

.business-content {
    padding: 1.5rem;
}

.business-content h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.business-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.business-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-stats span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white; /* Changed from default black to white */
}

/* Process Section */
.process {
    background: #fafbfc;
}

.process-timeline {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 420px; /* Increased height for larger cards */
    overflow: hidden; /* Prevent overflow */
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-right: 0; /* Removed margin-right */
    vertical-align: top;
    margin-left: 0; /* Fixed margin */
    flex-shrink: 0; /* Prevent shrinking */
}

.step-header {
    display: flex;
    align-items: flex-start; /* Align to top to prevent overlap */
    margin-bottom: 1rem;
    padding: 0;
    gap: 1rem; /* Add gap between number and title */
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color);
    padding-top: 1rem; /* Reduced for header */
    padding-left: 2rem;
    position: relative;
    flex: 1;
    overflow: hidden;
    text-align: left; /* Align text to left */
}

.step-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem; /* Reduced margin */
    font-size: 1.1rem; /* Slightly smaller */
    margin-left: 0; /* Removed margin-left to prevent overlap */
    line-height: 1.3; /* Improved line height */
}

.step-content p {
    color: #666;
    margin-bottom: 1rem; /* Reduced margin */
    font-size: 0.9rem; /* Slightly smaller */
}

.step-content ul {
    list-style: none;
}

.step-content li {
    padding: 0.2rem 0; /* Reduced padding */
    color: #555;
    position: relative;
    padding-left: 1rem;
    font-size: 0.85rem; /* Smaller font */
}

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.about-highlights {
    margin-top: 2rem;
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #666;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-stats-card h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.mini-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mini-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-number {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.mini-label {
    font-size: 0.85rem;
    color: #666;
}

.carousel-nav button:hover {
    background: var(--secondary-color);
}

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

/* FAQ Section */
.faq {
    background: #ffffff;
    padding: 80px 0;
}

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

.faq-item {
    background: var(--background-color);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 1.5rem;
}

/* Contact Section */
.contact {
    background: #fafbfc;
}

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

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact .method-content h4 {
    display: none; /* hide headings to match Address tile layout */
}

.method-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* Make phone/email/whatsapp links look identical to Address tile's primary line */
.contact .method-content p a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.contact .method-content p a:hover {
    text-decoration: underline;
}

.method-content span {
    font-size: 0.85rem;
    color: #666;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color); /* Add blue border to contact form */
}

.contact-form h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

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

.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: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #10b981;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    display: none;
    margin-top: 0.25rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-width: 160px;
    height: auto;
}

.footer-logo-caption {
    display: block;
    max-width: 100%;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
}

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

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-section ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

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

.process-step.animate {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@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);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }

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

    .hero {
        text-align: center;
        padding: 90px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-visual {
        display: none;
    }

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

    .business-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem; /* Reduced gap for concise mobile view */
    }

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

    .process-step {
        min-height: 400px; /* Increased for better text accommodation */
    }

    .step-content {
        padding: 1.5rem; /* Reduced padding for mobile */
        text-align: left;
    }

    .step-content h3 {
        font-size: 0.95rem; /* Reduced for mobile */
        line-height: 1.2;
    }

    .step-content p {
        font-size: 0.8rem; /* Reduced for mobile */
    }

    .step-content li {
        font-size: 0.75rem; /* Reduced for mobile */
    }

    .step-number {
        width: 35px; /* Slightly smaller for mobile */
        height: 35px;
        font-size: 0.8rem;
        line-height: 35px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card,
    .contact-form-container {
        padding: 1.5rem;
    }

    .step-content {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 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;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.skip-to-content {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

.skip-to-content:focus {
    left: 50%;
    top: 10px;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 9999;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transform: translateX(-50%);
}

/* Testimonials Section */
.testimonials {
    background: #f5f7fa;
    padding: 80px 0;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 1rem;
}

.testimonial-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color); /* Add blue border to all testimonial cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.client-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.client-title {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-nav button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.carousel-nav button:hover {
    background: var(--secondary-color);
}