/* CSS Custom Properties (Variables) */
:root {
    --base-red: #8e1616;
    --light-red: #d84040;
    --dark: #1d1616;
    --off-white: #f6f6f6;
    --white: #ffffff;
    --text-primary: #1d1616;
    --text-secondary: #666666;
    --gradient-primary: linear-gradient(135deg, var(--base-red) 0%, var(--light-red) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(142, 22, 22, 0.9) 0%, rgba(216, 64, 64, 0.9) 100%);
    --shadow-light: 0 2px 20px rgba(29, 22, 22, 0.1);
    --shadow-medium: 0 10px 30px rgba(29, 22, 22, 0.1);
    --shadow-heavy: 0 20px 40px rgba(29, 22, 22, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.8s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(246, 246, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-fast);
}
.navbar.scrolled {
    background: rgba(142, 22, 22, 0.95); /* Red background */
    box-shadow: var(--shadow-light);
}
.nav-container {
    max-width: 1700px;
    margin: 0 50px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Hamburger Menu - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}
.navbar.scrolled .hamburger-line {
    background: var(--off-white);
}
/* Hamburger X animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* left hand logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
    height: 50px;
    width: 50px;
    /* background: var(--gradient-primary);
    border-radius: var(--border-radius-sm); */
}
.hidden-logo {
    display: none;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-fast);
}
.navbar.scrolled .logo-text {
    color: var(--off-white);
    background: none;
    -webkit-text-fill-color: var(--off-white);
}
/* right hand buttons */
.nav-actions {
    display: flex;
    gap: 2rem;
}
.nav-btn {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}
.navbar.scrolled .nav-btn {
    color: var(--off-white);
}
.nav-btn:hover {
    color: var(--base-red);
    background: rgba(142, 22, 22, 0.1);
    transform: translateY(-1px);
}
.navbar.scrolled .nav-btn:hover {
    color: var(--off-white);
    background: rgba(246, 246, 246, 0.2);
    transform: translateY(-1px);
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay),
                url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
 .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* hero text */
.hero-text {
    max-width: 600px;
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.7s forwards;
}
/* buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
}
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    display: inline-block;
}
.btn-primary {
    background: var(--off-white);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(29, 22, 22, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 22, 22, 0.3);
}
.btn-secondary {
    background: rgba(246, 246, 246, 0.2);
    color: var(--off-white);
    border: 2px solid rgba(246, 246, 246, 0.3);
}
.btn-secondary:hover {
    background: rgba(246, 246, 246, 0.1);
    border-color: rgba(246, 246, 246, 0.5);
    transform: translateY(-2px);
}
/* Video */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-animation {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease 1s forwards;
}
/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--off-white);
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards, float 2s ease-in-out infinite 1.2s;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}
.scroll-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.scroll-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    animation: bounce 2s infinite;
}


/* Services Section */
.services {
    min-height: 100vh;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: var(--white);
}
/* elevator */
.elevator-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(142, 22, 22, 0.1) 0%,
        rgba(216, 64, 64, 0.1) 25%,
        rgba(142, 22, 22, 0.1) 50%,
        rgba(216, 64, 64, 0.1) 75%,
        rgba(142, 22, 22, 0.1) 100%
    );
    box-shadow: 
        inset -2px 0 10px rgba(142, 22, 22, 0.3),
        inset 2px 0 10px rgba(142, 22, 22, 0.3);
}
.elevator-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(142, 22, 22, 0.5);
}
.elevator-car {
    position: absolute;
    left: 50%;                 /* center horizontally inside shaft */
    transform: translateX(-50%);
    width: 190px;              /* keep slightly smaller than shaft width */
    height: auto;              /* maintain aspect ratio */
    top: 0;                /* start at bottom of shaft */
    transition: bottom 1s ease-in-out; /* smooth movement */
}
.services-content {
    position: relative;
    z-index: 2;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}
/* service cards */
.service-item {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
}
.service-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all var(--transition-medium);
}
.service-item.left {
    text-align: left;
}
.service-item.right {
    text-align: right;
}
.service-card {
    display: inline-block;
    max-width: 600px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
    border: 1px solid rgba(142, 22, 22, 0.1);
}
.service-item.left .service-card {
    margin-right: auto;
    margin-left: 0;
}
.service-item.right .service-card {
    margin-left: auto;
    margin-right: 0;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}
.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}


/* Testimonial section */
.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 300px;
    overflow: hidden;
}
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
}
.testimonial-cards.active {
    opacity: 1;
    transform: translateX(0);
}
.testimonial-cards.exiting {
    opacity: 0;
    transform: translateX(-100%);
}
/* Testimonial Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}
.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(246, 246, 246, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.testimonial-indicators .indicator.active {
    background: var(--light-red);
    border-color: var(--light-red);
    transform: scale(1.2);
}
.testimonial-indicators .indicator:hover {
    border-color: var(--light-red);
}
/* Testimonials Section */
.testimonials {
    /* min-height: 100vh; */
    position: relative;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
}
.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(29, 22, 22, 0.8), rgba(29, 22, 22, 0.8)),
                url('../images/elevare-background.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
/* Primary container with CTA inside */
.testimonials-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
/* container holding cards */
.testimonial-card {
    background: rgba(246, 246, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    min-height: 275px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    transition: all var(--transition-fast);
    border: 2px solid rgba(142, 22, 22, 0.9);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}
.testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
}
.testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
}
.testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(29, 22, 22, 0.2);
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    text-indent: 24px;
}
.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--base-red);
    position: absolute;
    top: -1rem;
    left: -2rem;
    font-family: serif;
}
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--base-red);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: serif;
}
.testimonial-info {
    border-top: 2px solid var(--off-white);
    /* margin-top: 5rem; */
    bottom: 1rem;
    position: absolute;
}
.business-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--base-red);
    margin-bottom: 0.5rem;
}
.owner-name {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}  
/* Gallery CTA */
.gallery-cta {
    text-align: center;
    max-width: 600px;
    color: var(--off-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
}
.gallery-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gallery-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.gallery-cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-medium);
}
.gallery-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}
.cta-arrow {
    font-size: 1.3rem;
    transition: transform var(--transition-fast);
}
.gallery-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}


/* Quote Section */
.quote {
    min-height: 100vh;
    background: var(--off-white);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}
.quote-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* left hand Reasons Container */
.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.quote-reasons h2,
.quote-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}
.reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reasons-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}
.reasons-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    cursor: default;
}
.reason-icon {
    font-size: 2rem;
    flex-shrink: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reasons-list li div strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.reasons-list li div p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}
/* right hand Quote Form */
.quote-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    margin: auto 0;
}
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
/* form questions */
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(142, 22, 22, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--base-red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(142, 22, 22, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* Submit button from uiverse */
.quoteButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 15px 30px;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.02s;
  font-weight: bold;
  cursor: pointer;
  color: rgb(37, 37, 37);
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
  width: 40%;
}
.quoteButton:hover {
  background: rgb(236, 4, 4);
  color: rgb(255, 255, 255);
  font-weight: bold;
  transition: all .5s;
}
.quoteButton:active {
  transform: scale(0.97);
}
.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hoverEffect div {
  background: rgb(222, 0, 75);
  background: linear-gradient(
    90deg,
    rgb(221, 2, 2) 0%,
    rgb(236, 4, 4) 49%,
    rgb(255, 255, 255) 100%
  );
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 0.5;
}
.quoteButton:hover .hoverEffect div {
  width: 10rem;
  height: 8rem;
}

/* Map Container */
.map-container {
    margin-bottom: 2rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.footer-map {
    filter: grayscale(50%) contrast(1.2);
    transition: filter var(--transition-fast);
}
.footer-map:hover {
    filter: grayscale(0%) contrast(1);
}
/* Company Links in Map Section */
.footer-company-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(246, 246, 246, 0.2);
}
.footer-company-links .footer-title {
    margin-bottom: 1rem;
}
/* Update grid for new layout */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--off-white);
    padding: 4rem 0 0 0;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h4.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--off-white);
    position: relative;
}
.footer-section h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}
/* Company Info */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.footer-logo-img {
    height: 40px;
    width: 40px;
}
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-description {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cccccc;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(246, 246, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--off-white);
    font-weight: bold;
    transition: all var(--transition-fast);
    border: 1px solid rgba(246, 246, 246, 0.2);
}
.social-link:hover {
    background: var(--base-red);
    border-color: var(--base-red);
    transform: translateY(-2px);
}
/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: block;
    padding: 0.2rem 0;
}
.footer-links a:hover {
    color: var(--light-red);
    padding-left: 0.5rem;
}
/* Contact Section */
.footer-contact {
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cccccc;
}
.contact-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}
.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.contact-item a:hover {
    color: var(--light-red);
}
/* Newsletter */
.newsletter h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--off-white);
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(246, 246, 246, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(246, 246, 246, 0.1);
    color: var(--off-white);
    font-size: 0.9rem;
}
.newsletter-form input::placeholder {
    color: #999;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--base-red);
    background: rgba(246, 246, 246, 0.15);
}
.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}
/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(246, 246, 246, 0.2);
    padding: 2rem 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-legal p {
    color: #999;
    margin: 0;
}
.legal-links {
    display: flex;
    gap: 1.5rem;
}
.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}
.legal-links a:hover {
    color: var(--light-red);
}
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.badge {
    background: rgba(246, 246, 246, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--off-white);
    border: 1px solid rgba(246, 246, 246, 0.2);
}


/* About Us Popup */
.about-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(29, 22, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.about-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.about-popup {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 1000px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s ease;
}
.about-popup-overlay.active .about-popup {
    transform: scale(1) translateY(0);
}
/* pop-up button */
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}
.popup-close:hover {
    background: var(--off-white);
    color: var(--base-red);
    transform: scale(1.1);
}
/* main container */
.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 500px;
}
/* left hand images */
.about-us-images {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 2rem;
}
.team-photo {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 10px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}
/* right hand text */
.about-us-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
.about-us-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-us-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}


/*  Gallery Popup */
.gallery-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(29, 22, 22, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.gallery-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.gallery-popup {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 1200px;
    max-height: 90vh;
    width: 95%;
    height: 85vh;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(50px);
    transition: all 0.4s ease;
}
.gallery-popup-overlay.active .gallery-popup {
    transform: scale(1) translateY(0);
}
.gallery-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
 /* Popup Header */
.popup-header {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
/* Updated Navigation Buttons */
.gallery-popup-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}
.gallery-popup-btn:hover {
    background: var(--off-white);
    color: var(--base-red);
    transform: scale(1.1);
}
.previous-popup {
    display: none;
}
/* Carousel */
.carousel-cards-popup {
    display: flex;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: 100%;
}
.car-card-popup {
    min-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
    background: var(--white);
}
/* Slide Content (Left Side) */
.slide-content-popup {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.slide-header-popup {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
}
.slide-header-popup h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.slide-address-popup {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.slide-link-popup {
    display: inline-block;
    background: var(--white);
    color: var(--base-red);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
}
.slide-link-popup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
.slide-image-popup {
    width: 100%;
    height: 400px;
    object-fit: contain;
    /* object-fit: cover; */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-fast);
    background: var(--off-white);
}
.slide-image-popup:hover {
    transform: scale(1.02);
}
/* Slide Info (Right Side) */
.slide-info-popup {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}
.slide-services-popup {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--base-red);
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
}
.slide-services-popup strong {
    color: var(--base-red);
    font-weight: 700;
}
.slide-description-popup {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding: 1rem 0;
}
.slide-review-popup {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
    box-shadow: var(--shadow-medium);
}
.slide-review-popup::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    opacity: 0.3;
    font-family: serif;
}
.slide-review-popup::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    bottom: -2rem;
    right: 1rem;
    opacity: 0.3;
    font-family: serif;
}
.slide-review-popup cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
    text-align: right;
}


/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Float animation for scroll indicator */
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}
/* Bounce animation for arrow */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}
/* Quote submit animation */
@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        margin: 0;
    }
    
    /* .nav-actions {
        gap: 1rem;
    } */
    
    /* .nav-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    } */
    
    /* Show hamburger, hide default nav */
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--off-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-actions.active {
        right: 0;
    }
    
    .navbar.scrolled .nav-actions {
        background: var(--dark);
    }
    
    .nav-btn {
        color: var(--text-primary);
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }
    
    .navbar.scrolled .nav-btn {
        color: var(--off-white);
    }

    /* hero content */
    /* .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    } */
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-video {
        display: none;
    }
    .hero-text {
        order: 1;
        max-width: 100%;
    }
    .hero-animation {
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        text-align: center;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0 !important;
        padding: 2rem;
    }
    
    .service-item.left,
    .service-item.right {
        text-align: center;
    }
    
    .elevator-background {
        width: 100px;
    }
    .elevator-background,
    .elevator-car {
        display: none;
    }

    /* testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-content {
        gap: 3rem;
    }

    .testimonial-carousel {
        min-height: 500px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 2rem;
    }
    
    .business-name {
        font-size: 1.1rem;
    }
    
    .gallery-cta h3 {
        font-size: 2rem;
    }
    
    .gallery-cta p {
        font-size: 1rem;
    }
    
    .gallery-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-reasons h2,
    .quote-form-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .quote-form-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reasons-list li {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .reason-icon {
        font-size: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-badges {
        justify-content: center;
    }
    /* about us pop-up */
    .about-popup {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-content {
        grid-template-columns: 1fr;
    }
    
    .popup-image {
        padding: 1.5rem;
        max-height: 300px;
    }
    
    .popup-text {
        padding: 2rem;
    }
    
    .popup-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .popup-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .popup-stats {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    /* Gallery pop-up */
    .gallery-popup {
        width: 98%;
        height: 95%;
    }
    
    .car-card-popup {
        padding: 1rem;
    }
    
    .port-header-popup {
        font-size: 2rem;
    }
    
    .slide-image-popup {
        max-height: 250px;
        max-width: 100%;
    }
    
    .slide-header-popup {
        padding: 0.8rem 1rem;
    }
    
    .slide-header-popup h3 {
        font-size: 1.2rem;
    }
    
    .gallery-popup-btn {
        font-size: 1.5rem;
        height: 50px;
        width: 50px;
    }
    
    .previous-popup {
        left: 1rem;
    }
    
    .next-popup {
        right: 1rem;
    }
}

/* Updated Mobile Design */
@media (max-width: 768px) {
    .services {
        padding: 2rem 0 0 0;
        min-height: auto; /* ADD THIS LINE */
    }
    
    .services-content {
        padding: 0;
        max-width: 100%;
    }
    
    .service-item {
        margin-bottom: 0;
        opacity: 1;
        transform: none;
    }
    
    .service-item.left,
    .service-item.right {
        text-align: left;
    }
    
    .service-card {
        max-width: 100%;
        width: 100%;
        margin: 0 !important;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-bottom: 2px solid var(--off-white);
        background: var(--white);
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Service Header (Always Visible) */
    .service-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 1.25rem;
        background: var(--white);
        transition: background 0.3s ease;
    }
    
    .service-item.active .service-header {
        background: var(--off-white);
    }
    
    .service-header-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0;
        font-weight: 600;
    }
    
    /* Dropdown Arrow */
    .service-arrow {
        font-size: 1.5rem;
        color: var(--base-red);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .service-item.active .service-arrow {
        transform: rotate(180deg);
    }
    
    /* Service Description (Collapsible) */
    .service-description {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 1.25rem;
    }
    
    .service-item.active .service-description {
        max-height: 500px;
        padding: 0 1.25rem 1.5rem 1.25rem;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-secondary);
    }
    
    /* GALLERY SECTION - MOBILE INSTAGRAM STYLE */
    .testimonials {
        padding: 0;
        min-height: 100vh; /* CHANGE from just display: flex */
        max-height: 100vh; /* ADD THIS LINE */
        display: flex;
        align-items: stretch;
    }
    
    .testimonials-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh; /* ADD THIS LINE */
    }
    
    .testimonials-content {
        height: 100%;
        gap: 0;
    }
    
    /* Hide original testimonial carousel */
    .testimonial-carousel,
    .testimonial-indicators {
        display: none;
    }
    
    /* Mobile Gallery Container */
    .mobile-gallery {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-gallery-track {
        display: flex;
        height: 100%;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        touch-action: pan-y pinch-zoom;
    }
    
    .mobile-gallery-slide {
        min-width: 100%;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: var(--white);
    }
    
    /* Image Container with Ken Burns Effect */
    .mobile-slide-image-container {
        height: 55%; /* CHANGE from 60% */
        width: 100%;
        overflow: hidden;
        position: relative;
        background: var(--dark);
    }
    
    .mobile-slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: kenBurns 8s ease-in-out infinite alternate;
    }
    
    @keyframes kenBurns {
        0% {
            transform: scale(1) translate(0, 0);
        }
        100% {
            transform: scale(1.1) translate(-2%, -2%);
        }
    }
    
    /* Slide Info */
    .mobile-slide-info {
        height: 45%; /* CHANGE from 40% */
        padding: 1rem 1.5rem; /* CHANGE from 1.5rem */
        overflow-y: hidden; /* CHANGE from auto */
        background: var(--white);
        display: flex;
        flex-direction: column;
        gap: 0.75rem; /* CHANGE from 1rem */
    }
    
    .mobile-slide-business {
        font-size: 1.35rem; /* CHANGE from 1.5rem */
        font-weight: 700;
        color: var(--base-red);
        margin: 0;
    }
    
    .mobile-slide-location {
        font-size: 0.85rem; /* CHANGE from 0.9rem */
        color: var(--text-secondary);
        margin: 0 0 0.25rem 0; /* CHANGE from 0 0 0.5rem 0 */
    }
    
    .mobile-slide-services {
        font-size: 0.9rem; /* CHANGE from 0.95rem */
        color: var(--text-primary);
        background: var(--off-white);
        padding: 0.65rem; /* CHANGE from 0.75rem */
        border-radius: var(--border-radius-sm);
        border-left: 3px solid var(--base-red);
        margin: 0;
    }
    
    .mobile-slide-services strong {
        color: var(--base-red);
    }
    
    .mobile-slide-quote {
        font-style: italic;
        color: var(--text-secondary);
        line-height: 1.4; /* CHANGE from 1.5 */
        font-size: 0.9rem; /* CHANGE from 0.95rem */
        padding: 0.85rem; /* CHANGE from 1rem */
        background: linear-gradient(135deg, rgba(142, 22, 22, 0.05) 0%, rgba(216, 64, 64, 0.05) 100%);
        border-radius: var(--border-radius-sm);
        position: relative;
        margin: 0.25rem 0 0 0; /* CHANGE from 0.5rem 0 0 0 */
    }

    .mobile-slide-quote::before {
        content: '"';
        font-size: 2rem;
        color: var(--base-red);
        position: absolute;
        top: -0.5rem;
        left: 0.5rem;
        opacity: 0.3;
        font-family: serif;
    }
    
    .mobile-slide-cite {
        display: block;
        margin-top: 0.5rem;
        font-style: normal;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.85rem;
    }
    
    /* Navigation Bars */
    .mobile-gallery-nav {
        position: absolute;
        bottom: 46%; /* CHANGE from 42% */
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        z-index: 10;
    }
    
    .mobile-gallery-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        flex: 1;
        max-width: 60px;
    }
    
    .mobile-gallery-bar.active {
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* Gallery CTA Button */
    .gallery-cta {
        display: none;
    }

    .mobile-section-header {
        text-align: center;
        padding: 2.5rem 1.5rem 1.5rem;
        background: var(--white);
    }

    .mobile-section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .services .mobile-section-header {
        background: var(--white);
    }
    
    .testimonials .mobile-section-header {
        background: var(--dark);
        position: relative;
        z-index: 2;
    }
    
    .testimonials .mobile-section-header h2 {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* FOOTER REORGANIZATION */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Reorder footer sections */
    .footer-section:nth-child(1) { order: 1; } /* Description */
    .footer-section:nth-child(2) { order: 4; } /* Map/Location */
    .footer-section:nth-child(3) { order: 5; } /* Company */
    .footer-section:nth-child(4) { order: 2; } /* Contact */
    
    /* Newsletter styling for mobile */
    .newsletter {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(246, 246, 246, 0.2);
    }
    
    .footer-contact {
        margin-bottom: 0;
    }

    .scroll-text {
        font-size: 0.8rem; /* OPTIONAL: slightly smaller on mobile */
        white-space: nowrap;
    }
    .testimonials-background {
        display: none;
        background-image: none;
    }

    .about-popup {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto; /* ADD THIS LINE */
    }
    
    .popup-content {
        grid-template-columns: 1fr;
        min-height: auto; /* ADD THIS LINE - remove fixed min-height */
    }
    
    .about-us-images {
        min-height: 250px; /* ADD THIS LINE */
    }
    
    .about-us-text {
        padding: 2rem;
        overflow-y: visible; /* CHANGE from auto */
    }
    #gallery-header {
        background: none;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}