/*
==================================================
|   STYLESHEET for Duane Drew Construction Digital Agency   |
==================================================

TABLE OF CONTENTS
-----------------
1.  :root & CSS Variables
2.  Global Resets & Base Styles
3.  Custom Cursor
4.  Site Background & 3D Effects
5.  Typography
6.  Layout & Helpers (Container, Section Padding)
7.  Buttons & Interactive Elements
8.  Header & Navigation
9.  Footer
10. Hero Section
11. Services Section
12. Process Section (Timeline)
13. Industries Section
14. Testimonials Section (Slider)
15. Call to Action (CTA) Section
16. Page Headers (for inner pages)
17. Legal & Contact Page Specifics
18. Form Styling
19. Popup Styling
20. Scroll & Reveal Animations
21. Keyframe Animations
22. Media Queries & Responsiveness
    - 1200px (Large Desktops)
    - 992px (Tablets)
    - 768px (Small Tablets / Large Mobiles)
    - 576px (Mobiles)

*/

/* 1. :root & CSS Variables
--------------------------------------------- */
:root {
    --primary-color: #5A67D8;
    /* A professional, trustworthy indigo */
    --primary-color-light: #7F8CFE;
    --secondary-color: #FF6B6B;
    /* A vibrant accent for CTAs */
    --dark-color: #0F172A;
    /* A deep, modern navy for backgrounds */
    --dark-color-alt: #1E293B;
    /* Slightly lighter for cards/panels */
    --light-color: #F8FAFC;
    /* Clean off-white */
    --text-color: #94A3B8;
    /* Muted text for readability on dark backgrounds */
    --heading-color: #E2E8F0;
    --border-color: rgba(148, 163, 184, 0.2);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 2. Global Resets & Base Styles
--------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color-light);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--light-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Custom Cursor
--------------------------------------------- */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color-light);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 500ms ease-out;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.cursor-dot.hidden,
.cursor-outline.hidden {
    opacity: 0;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--secondary-color);
}

/* 4. Site Background & 3D Effects
--------------------------------------------- */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--dark-color);
}

.site-background::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90, 103, 216, 0.15) 0%, rgba(15, 23, 42, 0) 60%);
    animation: background-glow 15s infinite alternate ease-in-out;
    top: -20%;
    left: -20%;
}

.site-background::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(15, 23, 42, 0) 60%);
    animation: background-glow-2 20s infinite alternate ease-in-out;
    bottom: -15%;
    right: -15%;
}

main {
    position: relative;
    z-index: 2;
}

/* 5. Typography
--------------------------------------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-secondary);
    color: var(--primary-color-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-color);
}


/* 6. Layout & Helpers
--------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* 7. Buttons & Interactive Elements
--------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    transform-origin: 100% 50%;
}

.btn:hover::before {
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 50%;
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary::before {
    background-color: var(--secondary-color);
}

.btn-primary:hover {
    color: var(--light-color);
}

/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--border-color);
}

.btn-secondary::before {
    background-color: var(--primary-color);
}

.btn-secondary:hover {
    color: var(--light-color);
    border-color: var(--primary-color);
}


/* 8. Header & Navigation
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-smooth), padding var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo img {
    height: 80px;
    transition: var(--transition-smooth);
}


.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--heading-color);
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.nav__toggle-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-color);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all var(--transition-smooth);
}

.nav__toggle-icon span:nth-child(1) {
    top: 0;
}

.nav__toggle-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav__toggle-icon span:nth-child(3) {
    bottom: 0;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}

/* 9. Footer
--------------------------------------------- */
.footer {
    background-color: var(--dark-color);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer__logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer__description {
    max-width: 300px;
}

.footer__links h3,
.footer__contact h3 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer__links ul li,
.footer__contact ul li {
    margin-bottom: 10px;
}

.footer__links ul a,
.footer__contact ul a {
    color: var(--text-color);
}

.footer__links ul a:hover,
.footer__contact ul a:hover {
    color: var(--primary-color-light);
    padding-left: 5px;
}

.footer__contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer__contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
}

/* 10. Hero Section
--------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.hero__actions a {
    margin: 0 10px;
}

.hero__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero__shape--1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    top: 10%;
    left: 15%;
    animation: float 15s infinite ease-in-out alternate;
}

.hero__shape--2 {
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation: float 12s infinite ease-in-out alternate-reverse;
}

.hero__shape--3 {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color-light);
    bottom: 15%;
    left: 30%;
    animation: float 18s infinite ease-in-out;
}

/* 11. Services Section
--------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, var(--dark-color-alt), var(--dark-color));
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 40%);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.service-card__icon,
.service-card__title,
.service-card__description,
.service-card__link {
    position: relative;
    z-index: 1;
}

.service-card__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: color var(--transition-smooth);
}

.service-card:hover .service-card__icon {
    color: var(--primary-color-light);
}

.service-card__title {
    margin-bottom: 15px;
}

.service-card__description {
    margin-bottom: 25px;
}

.service-card__link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--heading-color);
}

.service-card__link i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link i {
    transform: translateX(5px);
}

/* 12. Process Section (Timeline)
--------------------------------------------- */
.process-section {
    background-color: var(--dark-color-alt);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.process-step:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.process-step__number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--dark-color);
    border: 4px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition-smooth);
}

.process-step:nth-child(odd) .process-step__number {
    right: -30px;
}

.process-step:nth-child(even) .process-step__number {
    left: -30px;
}

.process-step:hover .process-step__number {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color-light);
    transform: translateY(-50%) scale(1.1);
}

.process-step__content {
    padding: 20px 30px;
    background-color: var(--dark-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    position: relative;
}

.process-step__title {
    margin-bottom: 10px;
    color: var(--primary-color-light);
}

/* 13. Industries Section
--------------------------------------------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    border-color: var(--border-color);
    background-color: var(--dark-color-alt);
}

.industry-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color-light);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-card__icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

.industry-card__title {
    margin-bottom: 10px;
}

/* 14. Testimonials Section (Slider)
--------------------------------------------- */
.testimonials-section {
    background-color: var(--dark-color-alt);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(20px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--heading-color);
    font-style: italic;
}

.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    left: -40px;
    top: -20px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    font-family: var(--font-secondary);
    color: var(--light-color);
}

.author-title {
    color: var(--text-color);
}

.testimonial-nav {
    position: absolute;
    bottom: -20px;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-color);
    border: 1px solid var(--border-color);
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-nav button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* 15. Call to Action (CTA) Section
--------------------------------------------- */
.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--light-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background-color: var(--light-color);
    color: var(--light-color);
}

.cta-section .btn-primary::before {
    background-color: var(--dark-color-alt);
}

.cta-section .btn-primary:hover {
    color: var(--primary-color);
}


/* 16. Page Headers (for inner pages)
--------------------------------------------- */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color-alt);
}

.page-header__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header__shape {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
}

.page-header__shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.page-header__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    background-color: var(--secondary-color);
}

.page-header__title {
    margin-bottom: 1rem;
}

/* 17. Legal & Contact Page Specifics
--------------------------------------------- */
.legal-page .container {
    max-width: 800px;
}

.legal-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--primary-color-light);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.contact-page__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-block {
    background-color: var(--dark-color-alt);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-info-block h2 {
    margin-bottom: 1rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.contact-detail-item .icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-detail-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}


/* 18. Form Styling
--------------------------------------------- */
.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--heading-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-color-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
}


/* 19. Popup Styling
--------------------------------------------- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--dark-color-alt);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: #4ade80;
    /* A success green */
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 0.5rem;
}


/* 20. Scroll & Reveal Animations
--------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* 21. Keyframe Animations
--------------------------------------------- */
@keyframes float {
    0% {
        transform: translateY(0) translateX(0) translateZ(0) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) translateX(20px) translateZ(50px) rotate(10deg);
    }
}

@keyframes background-glow {
    0% {
        transform: translate(-20%, -20%) scale(1);
    }

    100% {
        transform: translate(0, 0) scale(1.2);
    }
}

@keyframes background-glow-2 {
    0% {
        transform: translate(0, 0) scale(1.2);
    }

    100% {
        transform: translate(-15%, -15%) scale(1);
    }
}

/* 22. Media Queries & Responsiveness
--------------------------------------------- */

/* Large Desktops (optional) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--dark-color-alt);
        padding: 100px 40px;
        z-index: -1;
        transition: right var(--transition-smooth);
        display: flex;
        flex-direction: column;
        border-left: 1px solid var(--border-color);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav__toggle {
        display: block;
        z-index: 1001;
    }

    .hero__title {
        font-size: 3rem;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .process-step__number {
        left: 0 !important;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
    }

    .footer__about {
        grid-column: 1 / -1;
    }

    .contact-page__wrapper {
        grid-template-columns: 1fr;
    }
}

/* Small Tablets / Large Mobiles */
@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .testimonial-quote::before {
        left: -20px;
    }

    .testimonial-nav {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__about,
    .footer__contact ul li {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .nav__menu {
        width: 100%;
    }
}