/*
  Web Design Agency Website
  Author: AI Assistant
  Version: 1.0
  ------------------------------------
  TABLE OF CONTENTS
  ------------------------------------
  1.  Global Styles & Variables
  2.  Typography
  3.  Layout & Container
  4.  Header & Navigation
  5.  Footer
  6.  Buttons & Forms
  7.  Hero Section
  8.  Services Section
  9.  Interactive Report Section
  10. Testimonials Section
  11. Industries (Tabs) Section
  12. Service Calculator Section
  13. Call to Action (CTA) Section
  14. Page-Specific Styles (Contact, Legal)
  15. Animations & Keyframes
  16. Utility Classes
  17. Responsive Design
*/

/* 1. Global Styles & Variables
--------------------------------------------- */
:root {
  --primary-dark: #0F172A; /* Deep navy/charcoal */
  --secondary-dark: #1E293B; /* Slightly lighter navy */
  --accent-color: #00E5FF; /* Bright cyan */
  --accent-hover: #00B8D4;
  --text-primary: #F8FAFC; /* Off-white for primary text */
  --text-secondary: #CBD5E1; /* Light grey for secondary text */
  --border-color: #334155;
  --background-light: #F1F5F9;
  --success-color: #4CAF50;
  --error-color: #F44336;

  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --header-height: 80px;
  --border-radius: 8px;
  --transition-speed: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--primary-dark);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* 2. Typography
--------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--accent-hover);
}

ul {
  list-style: none;
}

.subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. Layout & Container
--------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* 4. Header & Navigation
--------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-speed);
}

.main-header.scrolled {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  height: 40px;
  filter:  invert(1);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 1.25rem;
}

.nav-links a {
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-speed);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-speed);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.arrow-down {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--primary-dark);
    color: var(--accent-color);
}
.dropdown-menu a::after {
    display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* 5. Footer
--------------------------------------------- */
.main-footer {
  background-color: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo {
  height: 40px;
  filter:  invert(1);
  margin-bottom: 1rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  color: var(--text-secondary);
}

.footer-col ul a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.contact-icon {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1rem;
    padding-top: 2px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

/* 6. Buttons & Forms
--------------------------------------------- */
.cta-button, .secondary-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
}

.cta-button {
  background-color: var(--accent-color);
  color: var(--primary-dark);
}

.cta-button:hover {
  background-color: var(--accent-hover);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.secondary-button {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.secondary-button:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--text-primary);
}

.cta-button-light {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    background-color: var(--text-primary);
    color: var(--primary-dark);
}
.cta-button-light:hover {
    background-color: var(--text-secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

#form-status {
    margin-top: 1rem;
    font-weight: 500;
}

/* 7. Hero Section
--------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 8rem) 0 8rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background-animation .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-background-animation .circle:nth-child(1) { width: 400px; height: 400px; top: 10%; left: 15%; animation-duration: 25s; }
.hero-background-animation .circle:nth-child(2) { width: 300px; height: 300px; top: 50%; right: 10%; animation-duration: 18s; }
.hero-background-animation .circle:nth-child(3) { width: 200px; height: 200px; bottom: 5%; left: 30%; animation-duration: 22s; }
.hero-background-animation .circle:nth-child(4) { width: 500px; height: 500px; top: -20%; right: -10%; animation-duration: 30s; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 1.5rem auto 2.5rem auto;
}

.hero-buttons a {
    margin: 0 0.5rem;
}

/* 8. Services Section
--------------------------------------------- */
.services-section {
    background-color: var(--secondary-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--primary-dark);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: 20%;
    left: 20%;
}


.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  color: var(--accent-color);
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* 9. Interactive Report Section
--------------------------------------------- */
.interactive-report-section {
    padding: 6rem 0;
}

.interactive-report-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.report-content {
    flex: 1;
}

.report-visual {
    flex: 1.2;
    position: relative;
}

#report-placeholder {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.sample-report {
    background-color: #1A202C;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 95%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
}

.sample-report.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.report-header h4 {
    margin: 0;
    color: var(--text-primary);
}

#close-report-btn {
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

#close-report-btn:hover {
    color: var(--accent-color);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kpi-card {
    background-color: var(--secondary-dark);
    padding: 1rem;
    border-radius: 4px;
}

.kpi-card h5 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.kpi-change {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}
.kpi-change.positive {
    color: #48BB78;
}
.kpi-change.negative {
    color: #F56565;
}

.report-chart img {
    width: 100%;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* 10. Testimonials Section
--------------------------------------------- */
.testimonials-section {
    background-color: var(--secondary-dark);
}

.testimonial-slider-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--primary-dark);
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  text-align: right;
}
.author-name {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}
.author-title {
    margin: 0;
    font-size: 0.9rem;
}

/* 11. Industries (Tabs) Section
--------------------------------------------- */
.industries-container {
    display: flex;
    gap: 3rem;
    background-color: var(--secondary-dark);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.industry-tabs {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.tab-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 1rem;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    transition: all var(--transition-speed);
    width: 220px;
    position: relative;
}

.tab-link.active {
    color: var(--accent-color);
    background-color: rgba(0, 229, 255, 0.05);
}

.tab-link:hover {
    color: var(--accent-color);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: var(--accent-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: var(--text-primary);
}
.tab-content ul {
    list-style: none;
    padding-left: 0;
}
.tab-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}
.tab-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* 12. Service Calculator Section
--------------------------------------------- */
.calculator-section {
    background-color: var(--secondary-dark);
}

.calculator-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-dark);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background-color: var(--secondary-dark);
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}
.service-option:hover {
    background-color: #334155;
}

.service-option input[type="checkbox"] {
    display: none;
}
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
}

.service-option input:checked + .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-dark);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.service-option input:checked + .checkmark::after {
    display: block;
}


#calculator-result {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--secondary-dark);
    border-radius: var(--border-radius);
    transition: all 0.5s;
}
#calculator-result p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}
#calculator-result a {
    font-weight: bold;
    text-decoration: underline;
}

/* 13. Call to Action (CTA) Section
--------------------------------------------- */
.cta-section {
  background: linear-gradient(45deg, var(--accent-color), #00B8D4);
  color: var(--primary-dark);
  text-align: center;
}
.cta-content h2 {
    color: var(--primary-dark);
}
.cta-content p {
    color: var(--secondary-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* 14. Page-Specific Styles (Contact, Legal)
--------------------------------------------- */
.page-header-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    text-align: center;
    background-color: var(--secondary-dark);
}
.page-header-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0 auto;
}

.contact-page-section {
    padding: 5rem 0;
}
.contact-wrapper {
    display: flex;
    gap: 3rem;
}
.contact-form-container {
    flex: 2;
}
.contact-info-container {
    flex: 1;
    background-color: var(--secondary-dark);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-icon-large {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    padding-top: 5px;
}
.contact-info-item h4 {
    margin-bottom: 0.25rem;
}
.contact-info-item p {
    margin-bottom: 0;
}

.legal-content-section {
    padding: 5rem 0;
}
.legal-content-section .container {
    max-width: 800px;
}
.legal-content-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
.legal-content-section p, .legal-content-section ul {
    margin-bottom: 1.5rem;
}
.legal-content-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}
.legal-content-section ul li {
    margin-bottom: 0.5rem;
}

/* 15. Animations & Keyframes
--------------------------------------------- */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.fade-in-up { transform: translateY(50px); }
.animate-on-scroll.slide-in-left { transform: translateX(-50px); }
.animate-on-scroll.slide-in-right { transform: translateX(50px); }
.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* 16. Utility Classes
--------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }

/* 17. Responsive Design
--------------------------------------------- */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }

    .industries-container {
        flex-direction: column;
    }
    .industry-tabs {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1rem;
    }
    .tab-link {
        width: auto;
        white-space: nowrap;
        padding: 0.75rem 1.25rem;
    }
    .tab-link.active::after {
        width: 60%;
        height: 3px;
        top: auto;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
    }

    .interactive-report-section .container {
        flex-direction: column;
    }

}


@media (max-width: 768px) {
    :root { --header-height: 70px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 4rem 0; }
    
    .nav-cta { display: none; }
    .nav-links-wrapper {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-dark);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 2rem;
    }
    .nav-links-wrapper.active {
        transform: translateX(0);
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
    }
    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger { display: block; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .dropdown:hover .dropdown-menu { display: none; }
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .dropdown.open .dropdown-menu {
        display: block;
        position: static;
        opacity: 1;
        transform: none;
        background: transparent;
        border: none;
        padding-left: 1rem;
        min-width: auto;
    }
    .dropdown.open .arrow-down { transform: rotate(180deg); }

    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 4rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .service-options {
        grid-template-columns: 1fr;
    }
}