/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NEW: KEYFRAMES FOR ENTRANCE, GLOW, MOVEMENT, AND GRADIENT PULSE */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 30px rgba(160, 32, 240, 0.15); }
    50% { box-shadow: 0 0 55px rgba(160, 32, 240, 0.4); }
    100% { box-shadow: 0 0 30px rgba(160, 32, 240, 0.15); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes iconGlowPulse {
    0% { filter: drop-shadow(0 0 0 #f0e6ff); }
    100% { filter: drop-shadow(0 0 10px #f0e6ff); } 
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a082e; 
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative; 
  z-index: 1; 
  /* Critical parent property removed to fix the sticky CTA button */
  overflow-x: hidden;
}

/* --- Background Video Styling (PARALLAX EFFECT) --- */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    /* Ensure the video covers the viewport */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; 
    /* Video content should cover the element's box while retaining its aspect ratio */
    object-fit: cover; 
    /* CRITICAL CHANGE: Reduced scale to 1.1 to show the full video content and minimize cropping while keeping parallax. */
    transform: translateZ(-1px) scale(1.1) translate(-50%, -50%); 
    filter: brightness(0.35); 
}

/* NEW: Accessibility Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #f0e6ff; 
    outline-offset: 4px; 
}

/* Header */
header {
  background-color: #6a0dad;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px; 
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.7); 
  z-index: 5; 
  animation: fadeIn 0.8s ease-out; 
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  user-select: none;
}

.logo img {
  height: 40px; 
  width: auto;
  margin-right: 10px;
  border-radius: 4px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}
.menu-icon {
    display: none; 
    font-size: 1.8rem;
    cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

/* ACTIVE MENU ITEM INDICATOR */
nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s;
  position: relative;
}

nav a.active,
nav a:hover {
  background-color: #a020f0;
}

/* Active dot is removed */
nav a.active::after {
    content: none;
}
/* END ACTIVE MENU ITEM INDICATOR */

/* Main content */
main {
  flex-grow: 1;
  max-width: 1080px; 
  width: 90%;
  margin: 40px auto;
  /* Glassmorphism/Dark Theme */
  background-color: rgba(10, 0, 20, 0.85); 
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  color: #f0f0f0; 
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(160, 32, 240, 0.2); 
  animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), glowPulse 10s infinite alternate; 
  position: relative; 
  z-index: 2;
  margin-bottom: 80px; 
}

h2 {
    color: #a020f0; 
    text-shadow: 0 0 8px rgba(160, 32, 240, 0.8); 
    font-size: 2.2rem;
    margin-bottom: 25px;
}
h3 {
    color: #f0e6ff; 
    font-size: 1.7rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Hero section (Home Page) */
.hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 20px 0;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff; 
  animation: float 4s ease-in-out infinite; 
}

.hero p {
  font-size: 1.3rem;
  color: #ccc; 
  max-width: 750px;
  margin: 0 auto 30px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap; 
}

.btn {
  background-color: #a020f0;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(160, 32, 240, 0.8); 
  transform: translateZ(0); 
}

.btn:hover {
  background-color: #6a0dad;
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 0 35px rgba(106, 13, 173, 1); 
}

.btn-secondary {
    background-color: #6a0dad;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.8);
}
.btn-secondary:hover {
    background-color: #a020f0;
}

.btn-tertiary {
    background-color: transparent;
    color: #a020f0;
    border: 2px solid #a020f0;
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.5);
}

.btn-tertiary:hover {
    background-color: #a020f0;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(160, 32, 240, 1);
}


/* How It Works Section (Home Page) */
.how-it-works {
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    animation: slideInUp 0.8s ease-out 0.2s backwards; 
}
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.step {
    flex: 1;
    text-align: center;
    background: rgba(106, 13, 173, 0.4); 
    padding: 20px;
    border-radius: 10px; 
    color: #fff; 
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp 0.6s ease-out 0.4s backwards; 
    transform-style: preserve-3d; 
}
/* New Staggered Delay for Steps */
.step:nth-child(2) { animation-delay: 0.5s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.step:hover {
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg); /* 3D Tilt and Lift */
}
.icon-circle {
    background: #a020f0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    transition: transform 0.4s ease;
    animation: iconGlowPulse 2s infinite alternate; 
}
.step:hover .icon-circle {
    transform: rotateY(180deg) scale(1.1); 
}
.step h4 {
    color: #fff; 
    margin-bottom: 10px;
}

/* Centering for the new CTA button */
.center-cta {
    text-align: center;
    margin-bottom: 60px; 
    animation: fadeIn 0.8s ease-out 0.8s backwards;
}

/* Features section (Home Page) */
.features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
  animation: slideInUp 0.8s ease-out 1s backwards;
}

.features article {
  background: rgba(106, 13, 173, 0.4); 
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 25px 30px;
  width: 320px; 
  text-align: center;
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}
.features article:hover {
    transform: translateY(-8px) scale(1.02) rotateY(3deg); /* 3D Tilt and Lift */
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    filter: brightness(0.9); 
}

.feature-icon {
    color: #a020f0;
    margin-right: 10px;
}

/* Client Wins Section Styles (Replaces Testimonials) */
.client-wins {
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    animation: slideInUp 0.8s ease-out 1.2s backwards;
}
/* Glowing Divider before Client Wins */
.client-wins::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a020f0, transparent);
    margin: -40px 0 40px;
    opacity: 0.6;
    animation: fadeIn 1s ease-out 1s backwards;
}
.win-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    justify-content: center;
}
.win-card {
    /* SEMI-TRANSPARENT CARD BACKGROUND */
    background: rgba(106, 13, 173, 0.4); 
    padding: 25px;
    border-radius: 10px;
    /* Gradient Border Animation */
    border-left: 5px solid; 
    border-image: linear-gradient(0deg, #a020f0, #f0e6ff, #a020f0) 1;
    border-image-slice: 1;
    background-size: 400% 400%;
    animation: slideInUp 0.6s ease-out backwards, gradientShift 4s ease infinite alternate;
    
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.win-card:nth-child(1) { animation-delay: 1.4s; }
.win-card:nth-child(2) { animation-delay: 1.5s; }
.win-card:nth-child(3) { animation-delay: 1.6s; }

.win-card:hover {
    transform: translateY(-5px) scale(1.01) rotateX(1deg);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
}
.win-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: left; 
}
.win-card h4 a {
    color: #fff; 
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
.win-card h4 a:hover {
    color: #e1c7ff; 
    text-decoration: underline;
}
.win-card p {
    font-size: 1rem;
    color: #ccc; 
}
/* END NEW CLIENT WINS STYLES */

/* Trust Bar Section (Home Page) */
.trust-bar {
    background-color: rgba(160, 32, 240, 0.9); 
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
    animation: slideInUp 0.8s ease-out 1.8s backwards;
}
.trust-bar h3 {
    color: #fff; 
    margin-bottom: 25px;
}


/* About Page Specific Styles (for completeness) */
.mission-statement {
    font-size: 1.4rem;
    font-style: italic;
    color: #e1c7ff; 
    text-align: center;
    margin-bottom: 40px;
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}
.about-content p {
    margin-bottom: 20px;
    color: #f0f0f0; 
}

/* PHILOSOPHY SECTION STYLES */
.philosophy-section {
    padding: 40px;
    margin: 40px 0;
    background-color: rgba(106, 13, 173, 0.5); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.4);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}
.philosophy-section h3 {
    margin-bottom: 25px;
}
.philosophy-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}
.philosophy-list {
    list-style: none;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.philosophy-list li {
    flex-basis: 300px; 
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff; 
    text-align: left;
    display: flex;
    align-items: flex-start;
    animation: float 4s ease-in-out infinite;
}
.philosophy-list li:nth-child(1) { animation-delay: 0.8s; }
.philosophy-list li:nth-child(2) { animation-delay: 1.2s; }
.philosophy-list li:nth-child(3) { animation-delay: 1.6s; }

.philosophy-list i {
    color: #fff; 
    font-size: 1.4rem;
    margin-right: 15px;
    min-width: 25px;
    margin-top: 2px;
}
.philosophy-outro {
    margin-top: 20px;
    font-style: italic;
    color: #ccc; 
}
/* END PHILOSOPHY SECTION STYLES */

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.why-us-list li {
    background: rgba(106, 13, 173, 0.4); 
    padding: 12px 15px;
    border-left: 4px solid #a020f0;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff; 
    transition: background-color 0.3s, transform 0.3s;
    animation: slideInUp 0.5s ease-out backwards; 
}
.why-us-list li:nth-child(1) { animation-delay: 0.6s; }
.why-us-list li:nth-child(2) { animation-delay: 0.7s; }
.why-us-list li:nth-child(3) { animation-delay: 0.8s; }

.why-us-list li:hover {
    background-color: rgba(160, 32, 240, 0.5);
    transform: translateX(8px); 
}
.why-us-list i {
    color: #fff; 
    margin-right: 10px;
}

/* How We Do It Video Styling */
.how-we-do-it-video {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease-out 1s backwards;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 800px; 
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6); 
    background-color: #000; 
    transition: box-shadow 0.5s;
}
.video-container:hover {
    box-shadow: 0 0 50px rgba(160, 32, 240, 0.9);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* End How We Do It Video Styling */

/* Stats Bar Section Styles (About Page) */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* SEMI-SOLID BACKGROUND */
    background-color: rgba(160, 32, 240, 0.7); 
    border-radius: 8px;
    padding: 30px 20px;
    margin: 40px 0;
    text-align: center;
    flex-wrap: wrap;
    color: #fff; 
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}
.stat-item {
    padding: 10px;
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: scale(1.1); 
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff; 
    line-height: 1.1;
}
.stat-label {
    font-size: 1rem;
    color: #fff; 
    margin-top: 5px;
}
/* Core Values Section Styles (About Page) */
.core-values {
    padding: 40px 0;
    margin-top: 40px;
    animation: slideInUp 0.8s ease-out 1.2s backwards;
}
.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 25px;
    /* SEMI-TRANSPARENT CARD BACKGROUND */
    background: rgba(106, 13, 173, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff; 
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.value-item:hover {
    transform: translateY(-5px) scale(1.03) rotateZ(-1deg);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
}
.value-item i {
    font-size: 2.5rem;
    color: #fff; 
    margin-bottom: 15px;
    animation: iconGlowPulse 5s ease-in-out infinite alternate; 
}
.value-item h4 {
    color: #e1c7ff; 
    margin-bottom: 10px;
    font-size: 1.4rem;
}


/* Contact Page Specific Styles (for completeness) */
.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc; 
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.form-column {
    padding: 30px; 
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(160, 32, 240, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
    transition: box-shadow 0.4s;
}
.form-column:hover {
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.6);
}
.calendly-column {
    background: rgba(0, 0, 0, 0.5); 
    animation: slideInUp 0.8s ease-out 0.6s backwards;
}
.form-column h3, .calendly-column h3 {
    text-align: left;
    margin-bottom: 10px;
    color: #e1c7ff; 
}
.form-group {
    margin-bottom: 20px; 
}
.contact-form label {
    display: block;
    margin-bottom: 8px; 
    font-weight: 600;
    color: #fff; 
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%; 
    padding: 12px;
    border: 1px solid #777;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #333; 
    color: #fff; 
}
.contact-form textarea {
    resize: vertical; 
}
.contact-form button.btn {
    width: 100%; 
    padding: 15px;
    font-size: 1.2rem;
    margin-top: 10px;
}
.contact-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: rgba(160, 32, 240, 0.7); 
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.5);
    color: #fff;
    animation: fadeIn 0.8s ease-out 0.8s backwards;
}


/* Footer */
footer {
  background-color: #333;
  color: #bbb;
  padding: 25px 40px; 
  display: block; 
  flex-shrink: 0; 
  position: relative; 
  z-index: 2; 
}

/* NEW: Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto 20px;
}

.footer-grid h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-grid ul {
    list-style: none;
}
nav ul li a, 
.footer-grid ul li a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-grid ul li a:hover {
    color: #a020f0;
}

.footer-contact p {
    color: #bbb;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.footer-contact i {
    color: #a020f0;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-social {
    text-align: right;
}
.social-links a {
    color: white;
    font-size: 1.8rem; 
    margin-left: 15px;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #a020f0;
}

.footer-copyright {
    grid-column: 1 / span 3; 
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
}

/* Floating CTA Button Styles (Fixed Position) */
.floating-cta {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    background-color: #a020f0;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(160, 32, 240, 1); 
    z-index: 1000; 
    animation: glowPulse 2s infinite alternate; 
}

.floating-cta i {
    margin-right: 10px;
}

.floating-cta:hover {
    background-color: #6a0dad;
    transform: scale(1.08) translateY(-2px); 
    box-shadow: 0 0 40px rgba(106, 13, 173, 1.2);
}


/* --- Media Queries for Responsiveness (Mobile First) --- */

@media (max-width: 1000px) {
    /* Footer Stack */
    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .footer-social {
        text-align: center;
    }
    .social-links {
        justify-content: center;
        display: flex;
    }
    .footer-copyright {
        grid-column: 1; 
    }
    
    /* Contact Page Grid Breakpoint */
    .booking-grid {
        grid-template-columns: 1fr; 
    }
    .calendly-column {
        order: -1; 
    }
    .contact-info-bar {
        flex-direction: column; 
        align-items: flex-start;
        gap: 20px;
    }
    .contact-info-item {
        width: 100%;
        min-width: unset;
        text-align: left;
    }
    .social-info {
        text-align: left;
    }
    .social-links-lg {
        justify-content: flex-start;
        margin-top: 5px;
    }
    .follow-us {
        justify-content: flex-start;
    }
    .guarantee-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    
    header {
        padding: 15px 20px;
    }

    /* Mobile Navigation */
    nav { order: -1; }
    .menu-icon { display: block; }
    nav ul {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: #6a0dad;
        position: absolute;
        top: 70px; 
        left: 0;
        padding: 10px 0;
        z-index: 10;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    .menu-toggle:checked ~ ul { display: flex; }
    nav ul li { width: 100%; }
    nav a { padding: 15px 20px; }

    main {
        padding: 20px;
        width: 95%;
    }
    
    .hero h2 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    
    /* Hero CTA Group for mobile */
    .hero-cta-group { flex-direction: column; gap: 15px; }
    .btn { padding: 12px 25px; font-size: 1rem; width: 100%; }
    
    /* Other Sections */
    .steps-container { flex-direction: column; }
    .features { gap: 20px; }
    .features article { width: 100%; }
    .stats-bar { flex-direction: column; gap: 25px; }
    .values-grid { flex-direction: column; gap: 20px; }

    /* Floating CTA Mobile Adjustment (Inherits fixed position) */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Footer */
    footer { padding: 25px 20px; }
    .footer-contact p { justify-content: center; }
}