/* 
   VK Vinayaga Packers and Movers - Premium Theme 
   Colors: Deep Navy Blue (#0A192F), Vibrant Orange (#FF6B00), Off-White (#F8F9FA) 
*/

:root {
    --primary-color: #0A192F;
    --primary-light: #112240;
    --accent-color: #FF6B00;
    --accent-hover: #E65C00;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.highlight {
    color: var(--accent-color);
}

.section {
    padding: 80px 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.navbar .hamburger {
    color: var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-height: 55px;
    width: auto;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--primary-color);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('images/hero_moving.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.6));
}

.hero-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 80px;
    gap: 50px;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-form-container {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    animation: fadeInRight 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-form-container h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.quote-form input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.quote-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    height: 500px;
}

.about-image {
    position: absolute;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

.img-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    background-image: url('images/about_movers.png');
    z-index: 1;
}

.img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    background-image: url('images/cost_van.png');
    z-index: 2;
    border: 10px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-color);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    border: 8px solid var(--white);
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
    font-weight: 500;
}

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features i {
    color: var(--accent-color);
    font-size: 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-card:hover .service-link {
    color: var(--accent-color);
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-us {
    background-color: var(--primary-color);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: var(--accent-color);
}

.why-us-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    flex: 1;
}

.why-us-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.why-us-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-row {
    display: flex;
    gap: 20px;
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: 15px;
    align-items: center;
    transition: var(--transition);
}

.feature-row:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn-primary {
    background-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--primary-light);
}

/* Footer */
.footer {
    background-color: #050E1D;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .site-logo {
    max-height: 70px;
}

.footer-desc {
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 5px;
}

.footer-bottom {
    background-color: #030811;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cost Info Section */
.cost-info-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cost-info-content {
    flex: 1;
}

.cost-info-image {
    flex: 1;
}

.cost-info-image img {
    width: 100%;
    height: auto;
}

.btn-cost {
    background-color: #0E9CE2;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    border: 2px solid #000;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-cost:hover {
    background-color: #0c88c7;
    transform: translateY(-2px);
}

/* Calculator & Stats Section */
.calc-stats-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.calculator-box {
    flex: 1;
    background-color: #000;
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.calc-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.calc-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.calc-form input {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
}

.btn-calc {
    background-color: #0E9CE2;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
}

.btn-calc:hover {
    background-color: #0c88c7;
}

.blue-stats-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blue-stat {
    background-color: #0E9CE2;
    color: #333;
    text-align: center;
    padding: 20px;
    border-radius: 0 0 80px 80px; /* Semi-circle bottom */
    position: relative;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
}

.stat-divider {
    height: 10px;
}

.stat-number-wrapper {
    font-size: 40px;
    font-weight: 900;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number-wrapper .plus {
    font-size: 20px;
    color: #4a54f1; /* purple plus sign from image */
    margin-left: 5px;
    margin-top: -15px;
}

.blue-stat .stat-text {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85); /* Navy transparent */
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #666;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #0A192F;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    color: #0A192F;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
}

.detailed-calc-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detailed-calc-form .form-group {
    text-align: left;
}

.detailed-calc-form .form-group.full-width {
    grid-column: 1 / -1;
}

.detailed-calc-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.detailed-calc-form input, 
.detailed-calc-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.detailed-calc-form input:focus, 
.detailed-calc-form select:focus {
    outline: none;
    border-color: #0E9CE2;
    box-shadow: 0 0 0 3px rgba(14, 156, 226, 0.1);
}

.estimate-result {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.4s ease;
}

.estimate-result h3 {
    color: #666;
    margin-bottom: 15px;
    font-size: 20px;
}

.estimate-result .price-range {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.estimate-result p {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.estimate-result .result-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Calculator Page Styles */
.page-header {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('images/hero_moving.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 80px;
    margin-top: 0;
    position: relative;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.calc-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 14px;
}

.table-responsive {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.detailed-rate-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.detailed-rate-table th {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    font-size: 15px;
    white-space: nowrap;
}

.detailed-rate-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #444;
}

.detailed-rate-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.detailed-rate-table tr:hover {
    background-color: #f1f8fc;
}

.how-to-calc-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
}

.how-to-calc-box p {
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .about-container, .why-us-container, .cost-info-container, .calc-stats-container {
        flex-direction: column;
    }
    
    .about-image-wrapper {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.5s ease-in-out;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-buttons {
        display: flex !important;
        flex-direction: column;
        margin-left: 0 !important;
        margin-top: 15px;
        width: 90%;
        gap: 15px !important;
    }
    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active {
        color: var(--primary-color);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .detailed-calc-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-page-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
