/* CSS Variables & Global Settings */
:root {
    /* Modern Color Palette */
    --primary-color: #4F46E5;
    /* Indigo 600 */
    --primary-hover: #4338ca;
    /* Indigo 700 */
    --secondary-color: #64748b;
    /* Slate 500 */
    --accent-color: #0ea5e9;
    /* Sky 500 */
    --success-color: #10b981;
    /* Emerald 500 */

    --dark-text: #0f172a;
    /* Slate 900 */
    --light-text: #475569;
    /* Slate 600 */

    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    /* Slate 100 */

    --border-color: #e2e8f0;
    /* Slate 200 */

    /* Shadows - Soft & Layered */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--light-text);
    line-height: 1.6;
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-text);
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    color: var(--primary-hover);
    gap: 8px;
    /* Subtle arrow movement */
}

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

.outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header - Glassmorphism */
.site-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo .highlight {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-list a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.header-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2.5px;
    background-color: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .header-actions {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.1) 0%, transparent 40%);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    /* Bigger title */
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, var(--dark-text), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-note::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
}

.hero-image {
    perspective: 1000px;
}

.image-placeholder {
    transition: transform 0.5s ease;
    /* border-radius: var(--radius-lg); */
    /* box-shadow: var(--shadow-xl); */
    /* background: white; */
    /* padding: 1rem; */
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
}

.image-placeholder img {
    border-radius: calc(var(--radius-lg) - 0.5rem);
    width: 100%;
    display: block;
}

.image-placeholder:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

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

    .hero-subhead {
        margin: 0 auto var(--spacing-md);
    }

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

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

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--secondary-color);
}

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

.feature-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-color);
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
    position: relative;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    padding: 0 1rem;
}

.solutions-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.solutions-header p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.solution-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.solution-icon {
    width: 56px;
    height: 56px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-card {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-card:after {
    content: '→';
    font-family: sans-serif;
    transition: transform 0.2s ease;
}

.btn-card:hover:after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Accounting Section (POS Features) */
.accounting-section {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.accounting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.accounting-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.accounting-preview img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.accounting-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.accounting-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.accounting-feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.accounting-feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.accounting-feature-item span {
    font-weight: 500;
    color: var(--dark-text);
}

@media (max-width: 900px) {
    .accounting-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: #d1fae5;
    /* Green 100 */
    color: #059669;
    /* Green 600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Video Section */
.video-section {
    padding: var(--spacing-xl) 0;
    background-color: #020617;
    /* Darker clean Slate */
    color: #fff;
    text-align: center;
}

.video-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-header h2 {
    color: #fff;
}

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

.video-wrapper {
    background: #0f172a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-title {
    padding: 1.5rem;
    text-align: left;
}

.video-title h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-title a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.video-title a:hover {
    color: var(--primary-color);
}

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

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

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    background: transparent;
    width: 100%;
    border: none;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.7;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large number */
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    /* Slightly larger form area */
    gap: 3rem;
    align-items: stretch;
    /* Ensure equal height */
}

.contact-info-card,
.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    /* Increased padding for premium feel */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    /* Subtle border */
    height: 100%;
    /* Fill the grid cell */
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #ffffff, #f8fafc);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-card>* {
    position: relative;
    z-index: 1;
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.contact-intro-text {
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* margin-top: 1rem; */
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: rgba(226, 232, 240, 0.8);
    transform: translateX(10px);
}

.contact-info-card:hover,
.contact-form-container:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-xl);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-method:hover .method-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(5deg);
}

.method-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.method-details p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: #f8fafc;
    /* Slight contrast input bg */
    font-size: 1rem;
    transition: all 0.2s ease;
    color: var(--dark-text);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    /* Standardized focus ring */
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    margin-top: auto;
    /* Push button to bottom if extra space */
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: #cbd5e1;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.location-info,
.contact-info {
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.footer-nav a {
    color: #cbd5e1;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom-bar {
    padding-top: 2rem;
    text-align: center;
}

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

.btn-contact-now {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    color: white;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-contact-now:hover {
    background: var(--primary-color);
}

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

    .footer-bottom-bar .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-hover);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}