/* Table of Contents
1.  Global Styles & Variables
2.  Keyframe Animations
3.  General Layout & Typography
4.  Header & Navigation
5.  Footer
6.  Buttons & Forms
7.  Hero Section
8.  Services Section
9.  About / Process Section
10. Calculator Section
11. Testimonials Section
12. CTA Section
13. Page-Specific Styles (Contact, Legal)
14. Interactive Elements (Chat, Cursor)
15. Utility Classes
16. Media Queries (Responsiveness)
*/

/* 1. Global Styles & Variables */
:root {
    --primary-color: #00c896;
    --secondary-color: #0077ff;
    --dark-bg: #f5f7fa;
    --dark-bg-secondary: #e9ecf3;
    --light-text: #a7a7a7;
    --primary-text: #858585;
    --muted-text: #777;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}



*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
    /* Hide default cursor */
}

/* 2. Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 246, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 246, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 246, 255, 0);
    }
}

@keyframes backgroundPan {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shapeFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(180deg);
    }
}

@keyframes shapeFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 20px) rotate(-180deg);
    }
}


/* 3. General Layout & Typography */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-text);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* 4. Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(13, 12, 34, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-container .logo:hover {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav .nav-link {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 100%;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-text);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--primary-text);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--primary-text);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Nav Open State */
body.nav-open .hamburger {
    background-color: transparent;
}

body.nav-open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

body.nav-open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}


/* 5. Footer */
.site-footer {
    background-color: #080716;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-text);
    font-size: 1.1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.footer-links ul,
.footer-contact p {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--muted-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--muted-text);
    border-radius: 50%;
    color: var(--muted-text);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Icon placeholders - replace with actual icon font/SVG */
[class^="icon-"]::before {
    font-family: 'icon-font';
    /* Replace with your icon font */
    font-style: normal;
}

.icon-map::before {
    content: '📍';
}

.icon-phone::before {
    content: '📞';
}

.icon-email::before {
    content: '✉️';
}

.icon-facebook::before {
    content: 'f';
}

.icon-twitter::before {
    content: 't';
}

.icon-linkedin::before {
    content: 'in';
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-legal-links a {
    color: var(--muted-text);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* 6. Buttons & Forms */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.4);
}

.btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-tertiary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--muted-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--light-text);
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}


/* 7. Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.shape1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation: shapeFloat1 15s infinite ease-in-out;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation: shapeFloat2 20s infinite ease-in-out;
}

.shape3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation: shapeFloat1 12s infinite ease-in-out reverse;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 4rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.animate-on-load {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-text p {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

/* 3D Visual */
.hero-3d-visual {
    position: relative;
    perspective: 1500px;
    min-height: 400px;
}

.card3d {
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: rgba(25, 24, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.1s ease-out;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card3d-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.card3d-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-text);
}

#card3d-1 {
    top: 0;
    left: 20%;
}

#card3d-2 {
    top: 30%;
    right: 10%;
}

#card3d-3 {
    bottom: 0;
    left: 40%;
}


/* 8. Services Section */
.services-section {
    background-color: var(--dark-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: transparent;
    height: 300px;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-front {
    background: var(--dark-bg);
    text-align: center;
}

.service-card-back {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    transform: rotateY(180deg);
    text-align: center;
}

.service-card-back p {
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-bg-secondary);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
}


/* 9. About / Process Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-title h2::after {
    left: 0;
    transform: translateX(0);
}

.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 2px;
    height: calc(100% - 30px);
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 3px solid var(--dark-bg);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--muted-text);
    font-size: 0.9rem;
}


/* 10. Calculator Section */
.calculator-section {
    background: var(--dark-bg-secondary);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--dark-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.calculator-results h3 {
    margin-bottom: 30px;
}

.result-item {
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.result-item h4 {
    color: var(--muted-text);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.result-item p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-text);
    margin: 0;
}

.calculator-results small {
    color: var(--muted-text);
    font-style: italic;
    font-size: 0.8rem;
}


/* 11. Testimonials Section */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Adjust as needed */
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 90%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.testimonial-author h4 {
    margin: 0;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-prev {
    transform: translateX(-80px);
}

.slider-next {
    transform: translateX(80px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}


/* 12. CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--dark-bg);
}

.cta-content p {
    color: #080716;
    max-width: 600px;
    margin: 20px auto 40px;
}

.cta-content .btn-primary {
    background: var(--dark-bg);
    color: var(--primary-text);
}

.cta-content .btn-primary:hover {
    background: #fff;
    color: var(--dark-bg);
}


/* 13. Page-Specific Styles (Contact, Legal) */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--dark-bg-secondary);
}

.page-header h1 {
    font-size: 3rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--muted-text);
}

.contact-section {
    padding-top: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info-item h4 {
    margin-bottom: 5px;
}

.contact-info-item p {
    margin: 0;
    color: var(--muted-text);
}

.contact-map iframe {
    border-radius: var(--border-radius);
}

.legal-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* 14. Interactive Elements (Chat, Cursor) */
/* Live Chat */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--dark-bg-secondary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chat-window.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    padding: 15px;
    background: var(--dark-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    max-width: 80%;
}

.chat-message.bot {
    background: var(--dark-bg);
    color: var(--light-text);
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex-grow: 1;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 20px;
    color: #fff;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    color: var(--dark-bg);
    padding: 0 15px;
    border-radius: 20px;
    cursor: pointer;
}

/* Custom Cursor */
#cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 246, 255, 0.1) 0%, rgba(0, 246, 255, 0) 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s;
}

body:hover #cursor-glow {
    opacity: 1;
}

/* 15. Utility Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* 16. Media Queries (Responsiveness) */

/* Tablet */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-3d-visual {
        display: none;
        /* Hide complex 3D on smaller screens for performance */
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen */
        width: 100%;
        height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        transition: right 0.5s ease-in-out;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .main-nav .nav-link {
        font-size: 1.5rem;
    }

    body.nav-open .main-nav {
        right: 0;
        /* Slide in */
    }

    .mobile-nav-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .slider-prev {
        transform: translateX(-40px);
    }

    .slider-next {
        transform: translateX(40px);
    }
}