/*
 //--------------------------------------------------------------------------------------------------//
 // Copyright on the content of this file is owned by Appi Bee Services Ltd.  All rights reserved. --//
 // Please respect the thousands of hours involved in developing this code. -------------------------//
 // Copying, reproducing, manipulating or using this code in any way, other than indirectly as a user// 
 // requires written permission from Appi Bee Services Ltd. -----------------------------------------//
 //--------------------------------------------------------------------------------------------------//
*/

/* Required field asterisk */
.req-star {
   color: #e53935;
   font-weight: 700;
   margin-left: 1px;
}

input[required], textarea[required], select[required] {
   border: 2px solid #3465A4;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

*, *::before, *::after {
   box-sizing: border-box;
}

body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #333;
   background-color: ghostwhite;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 0.5rem;
}

header {
   background: linear-gradient(135deg, #3465A4 0%, #729FCF 100%);
   color: white;
   padding: 1rem 0;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
   text-align: center;
}

.logo-area {
   display: inline-block;
   min-width: 300px;
}

.logo-placeholder {
   color: #3465A4;
   font-size: 1.2rem;
   font-style: italic;
}

.tagline {
   font-size: 1.2rem;
   font-weight: 300;
   margin-top: 10px;
}

nav {
   background-color: #3465A4;
   padding: 0.5rem 0;
   position: sticky;
   top: 0;
   z-index: 100;
   box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-toggle {
   display: none;
   background: none;
   border: none;
   color: white;
   font-size: 1.5rem;
   cursor: pointer;
   padding: 0.5rem;
}

nav ul {
   list-style: none;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

nav li {
   margin: 0 15px;
}

nav a {
   color: white;
   text-decoration: none;
   font-weight: 500;
   transition: color 0.3s;
}

nav a:hover {
   color: #FDFACE;
}

section {
   padding: 2rem 0;
   border-bottom: 1px solid lightsteelblue;
}

section:last-child {
   border-bottom: none;
}

h2 {
   color: #3465A4;
   font-size: 2rem;
   margin-bottom: 1rem;
   text-align: center;
}

.service-content {
   background: white;
   padding: 0.5rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   color: #3465A4;
}

.services {
   padding: 0.25em;
}

/* Profile Summary Styles */
.profile-summary {
   background: white;
   padding: 0.5rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   display: flex;
   gap: 2rem;
   align-items: flex-start;
}

.profile-photo {
   flex-shrink: 0;
}

.couple-photo {
/*   width: 250px; */
   max-height: 250px;
   object-fit: cover;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.story-pic {
   text-align:center;
}
   
.profile-text {
   flex: 1;
   color: #3465A4;
   line-height: 1.5;
}

.profile-text p {
   margin-bottom: 1rem;
}

.read-more-link {
   text-align: center;
   margin-top: 2rem;
}

.read-more-link a {
   color: #3465A4;
   font-weight: 600;
   font-size: 1.1rem;
   text-decoration: none;
   transition: color 0.3s;
}

.read-more-link a:hover {
   color: #729FCF;
}

/* Modal Styles */
body.modal-open {
   overflow: hidden;
}

body.modal-close {
   overflow: auto;
}

.modal {
   display: none;
   position: fixed;
   z-index: 1000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.5);
   animation: fadeIn 0.3s;
}

@keyframes fadeIn {
   from { opacity: 0; }
   to { opacity: 1; }
}

.modal-content {
   background-color: white;
   margin: 2% auto;
   padding: 2rem;
   border-radius: 10px;
   width: 90%;
   max-width: 800px;
   max-height: 85vh;
   overflow-y: auto;
   box-shadow: 0 4px 20px rgba(0,0,0,0.3);
   animation: slideIn 0.3s;
}

@keyframes slideIn {
   from {
      transform: translateY(-50px);
      opacity: 0;
   }
   to {
      transform: translateY(0);
      opacity: 1;
   }
}

.modal-close {
   color: #aaa;
   float: right;
   font-size: 2rem;
   font-weight: bold;
   line-height: 1;
   cursor: pointer;
   transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
   color: #3465A4;
}

.modal-content h2 {
   color: #3465A4;
   margin-top: 0;
   margin-bottom: 0.5rem;
}

/* Optimization: Faster transitions */
.modal, .carousel-slide {
   will-change: opacity, transform;
}

/* Profile Content (used in modal) */
.process-content {
   line-height: 1.4;
   color: #3465A4;
}

.process-content p, li  {
   padding-bottom: 0.25rem;
}
.process-hdr { 
   text-decoration: underline;
   font-weight: 500;
}

.process-content h3 {
   font-size: 1.2rem;
   margin-top: 1rem;
   padding-bottom: 0;
}

/* Profile Content (used in modal) */
.profile-content {
   line-height: 1.4;
   color: #3465A4;
}

.profile-content h3 {
   font-size: 1.3rem;
   margin-top: 2rem;
   border-bottom: 2px solid #729FCF;
   padding-bottom: 0.5rem;
}

.profile-content h3:first-child {
   margin-top: 0;
}

.profile-content p {
   margin-bottom: 1rem;
}

.profile-content strong {
   color: #3465A4;
   font-weight: 600;
}

.profile-content ul,
.profile-content ul {
   margin: 1rem 0 1rem 2rem;
   line-height: 1.4;
}

.profile-content li {
   margin-bottom: 0.5rem;
}

.profile-pic {
   width:100%;
   margin: 0 auto;   
}  
 
.fee-content {
   background: white;
   padding: 0.5rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   color: #3465A4;
}

.pricing {
   padding: 0.25em;
}

ol, ul { 
   margin-left: 1.25em; 
}   

.placeholder-text { /*testimonial-only */
   color: darkgray;
   font-style: italic;
   text-align: center;
   padding: 2rem;
}

.quotes-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.quote-card {
   background: #FDFACE;
   padding: 1.5rem;
   border-radius: 8px;
   border-left: 4px solid #3465A4;
   box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quote-text {
   font-style: italic;
   margin-bottom: 1rem;
}

.quote-author {
   color: #3465A4;
   font-weight: 600;
   text-align: right;
}

.profile-section {
   background: white;
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.availHdr {
   margin-bottom: 0em;
   line-height:1;
}   

.availDiv {
   width: 100%;
   text-align: center;
}

.availNote {
   color: #3465A4;
   font-size: 0.8rem;   
}   

.availList {
   color: lightgray;
   min-width: 2rem;
}   

.calendar-container {
   background: white;
   padding: 0.5rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   max-width: 600px;
   margin: 0 auto;
}

.calendar-controls {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 0.5emrem;
   gap: 1rem;
}

.calendar-controls button {
   background: #3465A4;
   color: white;
   border: none;
   padding: 10px 20px;
   border-radius: 5px;
   cursor: pointer;
   font-size: 1rem;
   transition: background 0.3s;
   white-space: nowrap;
}

.calendar-controls button:hover:not(.disabled) {
   background: #729FCF;
}

.calendar-controls button.disabled {
   background: #ccc;
   color: #888;
   cursor: not-allowed;
   opacity: 0.6;
}

.current-month {
   font-size: 1.3rem;
   font-weight: 600;
   color: #3465A4;
   text-align: center;
   flex: 1;
}

.calendar-grid {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   gap: 5px;
}

.calendar-day-header {
   text-align: center;
   font-weight: 600;
   padding: 10px;
   background: lightsteelblue;
   color: #3465A4;
}

.calendar-day {
   aspect-ratio: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 1px solid #ddd;
   border-radius: 5px;
   cursor: default;
   position: relative;
}

.calendar-day.available {
   background: #e8f5e9;
   border-color: #4caf50;
}

.calendar-day.unavailable {
   background: #ffebee;
   border-color: #f44336;
   color: #999;
}

.calendar-day.unconfirmed {
   background-color: #fff3e0;   /* pale orange */
   border-color: #ff9800;
   color: #999;
 /*   cursor: not-allowed; */
}

.calendar-day.past {
   background: #f5f5f5;
   border-color: #e0e0e0;
   color: #bdbdbd;
   text-decoration: line-through;
}

.calendar-day.empty {
   border: none;
}

.calendar-legend {
   display: flex;
   justify-content: center;
   gap: 2rem;
   margin-top: 1.5rem;
   font-size: 0.9rem;
   flex-wrap: wrap;
}

.month-select {
   color: #3465A4;
   padding: 6px 8px;
   font-size: 16px;
   border-radius: 6px;
   font-weight:600;
   border: 2px solid lightsteelblue;
}

select {
   border: 2px solid lightsteelblue;
   outline: none;                      /* removes browser default black outline */
}

select:hover {
   border-color: #729FCF;              /* subtle blue on hover instead of black */
}

select:focus {
   outline: none;                      /* belt-and-braces for focus ring */
   border-color: #3465A4;             /* matches your other focused input fields */
   box-shadow: 0 0 0 2px rgba(52, 101, 164, 0.2);  /* soft glow, consistent with your palette */
}  

.legend-item {
   display: flex;
   align-items: center;
   gap: 8px;
}

.legend-box {
   width: 20px;
   height: 20px;
   border-radius: 3px;
   border: 1px solid #ddd;
}

.bookings-table {
   width: 100%;
   border-collapse: collapse;
   background: white;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   margin: 1rem 0;
   line-height: 1.1;
}

.bookings-table thead {
   background: linear-gradient(135deg, #3465A4 0%, #729FCF 100%);
   color: white;
}

.bookings-table th {
   text-align: left;
   font-weight: 600;
   font-size: 0.8rem;
}

.bookings-table th,
.bookings-table td {
   padding: 0.25rem;
}

.bookings-table td {
   border-bottom: 1px solid lightsteelblue;
}

.bookings-table tbody {
   color: #3645A4;
}

.bookings-table tbody tr:last-child td {
   border-bottom: none;
}

.bookings-table tbody tr:hover {
   background: #f8f9fa;
}

.no-bookings,
.error {
   text-align: center;
   padding: 2rem;
   color: #666;
   font-style: italic;
}

.error {
   color: #c62828;
}

.testimonials-grid {
   display: grid;
   gap: 2rem;
}

.testimonial-card {
   background: white;
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   border-top: 3px solid #729FCF;
}

.testimonial-header {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1.5rem;
}

.testimonial-photo {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid #729FCF;
}

.testimonial-text {
   margin-bottom: 1rem;
   line-height: 1.8;
}

.testimonial-author {
   color: #3465A4;
   font-weight: 600;
   line-height: 1.4;
}

.testimonial-location {
   font-size: 0.9rem;
   font-weight: normal;
   color: #729FCF;
}

.fees {
   padding: 0.25em;
   line-height: 1.5;
}

.subheader {
   text-decoration: underline;
   font-weight: 500;
}   
   
.inquiry-form {
   background: white;
   padding: 0.5rem;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   max-width: 700px;
   margin: 0 auto;
}

.form-group {
   margin-bottom: 1.5rem;
}

form {
   padding-left: env(safe-area-inset-left);
   padding-right: env(safe-area-inset-right);
}

label {
   display: block;
   margin-bottom: 0.5rem;
   color: #3465A4;
   font-weight: 500;
}

.field-note {
   font-size: 0.85rem;
   color: darkgray;
   font-style: italic;
   margin-top: 0.25rem;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
textarea {
   width: 100%;
   box-sizing: border-box; /* 🔑 critical for iOS */
   padding: 10px;
   border: 2px solid lightsteelblue;
   border-radius: 5px;
   font-size: 1rem;
   font-family: inherit;
   transition: border-color 0.3s;
}

input[type="date"], input[type="time"] {
   width: 100%;
   box-sizing: border-box;
   padding: 10px;
   font-size: 16px;
   font-family: inherit;
   border: 2px solid lightsteelblue;
   color: black;
   /* iOS consistency */
   -webkit-appearance: none;
   appearance: none;
   background-color: #fff;

   /* Prevent overflow + zoom */
   min-height: 44px; /* Apple touch target */
}   

/*iOS specific hardening */
input[type="date"] {
   -webkit-appearance: none;
   appearance: none;
}
.form-group,
.form-row {
   max-width: 100%;
   overflow-x: hidden;
}

/* Input and Textarea Placeholder Styles */
input::placeholder,
textarea::placeholder {
   font-size: 0.85rem;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
   font-size: 0.85rem;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
   font-size: 0.85rem;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
   font-size: 0.85rem;
}

input:focus,
textarea:focus {
   outline: none;
   border-color: #3465A4;
}

textarea {
   resize: vertical;
   min-height: 100px;
}

.radio-group {
   display: flex; 
   gap: 20px; 
   margin-bottom: 10px;
}
   
.checkbox-group {
   display: flex;
   align-items: center;
   gap: 10px;
}

input[type="checkbox"] {
   width: 20px;
   height: 20px;
   cursor: pointer;
}

.pet-details {
   display: none;
   margin-top: 1rem;
   padding: 1rem;
   background: #FDFACE;
   border-radius: 5px;
}

.date-inputs {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.form-error {
   background: #ffebee;
   border: 2px solid #f44336;
   border-radius: 5px;
   padding: 15px;
   margin-top: 1rem;
   color: #c62828;
   font-weight: 500;
   animation: shake 0.4s;
}

@keyframes shake {
   0%, 100% { transform: translateX(0); }
   25% { transform: translateX(-10px); }
   75% { transform: translateX(10px); }
}

button[type="submit"] {
   background: #3465A4;
   color: white;
   border: none;
   padding: 12px 40px;
   border-radius: 5px;
   font-size: 1.1rem;
   cursor: pointer;
   transition: background 0.3s;
   width: 100%;
}

button[type="submit"]:hover {
   background: #729FCF;
}

button[type="submit"]:focus:not(:hover),
button[type="submit"]:active:not(:hover) {
   background: initial;
}

.calendar-controls button:focus,
.calendar-controls button:active {
   background: #3465A4;
}

.calendar-controls button.disabled:focus,
.calendar-controls button.disabled:active {
   background: #ccc;
}

.no-hover:hover {
   background: #3465A4 !important;
}

.phone-content {
   padding: 0.5rem 2rem;
   color: #3645A4;
   max-width: 700px;
   margin: 0 auto;
}

.phone {   
   font-weight: 500;
}
 
/* Gallery Carousel Styles */
.gallery-carousel {
   position: relative;
   max-width: 800px;
   margin: 0 auto;
   overflow: hidden;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   min-height: 400px; /* Adjust to match your image aspect ratio */
   background: #f0f0f0; /* Placeholder background */
}

.carousel-container {
   overflow: hidden;
   background: white;
}

.carousel-track {
   display: flex;
   transition: transform 0.5s ease-in-out;
}

.carousel-slide {
   min-width: 100%;
   position: relative;
}

.carousel-slide img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   display: block;
}

.carousel-caption {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
   color: white;
   padding: 2rem 1rem 1rem;
   font-size: 1rem;
}

.carousel-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: rgba(52, 101, 164, 0.8);
   color: white;
   border: none;
   font-size: 2rem;
   padding: 1rem 1.5rem;
   cursor: pointer;
   z-index: 10;
   transition: background 0.3s;
   border-radius: 5px;
}

.carousel-btn:hover {
   background: rgba(114, 159, 207, 0.9);
}

.prev-btn {
   left: 1rem;
}

.next-btn {
   right: 1rem;
}

.carousel-dots {
   display: flex;
   justify-content: center;
   gap: 0.5rem;
   margin-top: 1.5rem;
}

.carousel-dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: lightsteelblue;
   cursor: pointer;
   transition: background 0.3s;
}

.carousel-dot.active {
   background: #3465A4;
}

/* commit Section Styles */
#commit {
   padding: 60px 0;
   background-color: #f9f9f9; /* Light contrast to your main white background */
   text-align: center;
   color: #3465A4
}

.commit-header {
   margin-bottom: 1rem;
}

.commit-header h2 {
   color: #3465A4;
   margin-bottom: 10px;
}

.commit-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
}

.commit-col {
   flex: 1;
   min-width: 280px; /* Forces stack on mobile */
   max-width: 350px;
   background: #fff;
   padding: 0.5rem;
   border-radius: 8px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.05);
   transition: transform 0.3s ease;
}

.commit-col:hover {
   transform: translateY(-5px); /* Gentle lift on hover */
}

.commit-col .icon {
   font-size: 3rem;
   margin-bottom: 15px;
}

.commit-col h3 {
   color: #3465A4; 
   margin-bottom: 0.8rem;
   font-size: 1.2rem;
}

.commit-col p {
   color: #3465A4;
   line-height: 1.6;
   font-size: 0.95rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
   .commit-col {
      max-width: 100%;
   }
}

footer {
   background: #3465A4;
   color: white;
   padding: 0.5rem 0;
}

.footer-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 0.5rem;
}

.footer-note {
   color: lightgray;
   font-size: 0.9rem;
   margin: 0.25rem 0;
}

.footer-left {
   text-align: left;
}

.footer-right {
   text-align: right;
}

.footer-right a {
   color: lightgray;
   text-decoration: none;
   transition: color 0.3s;
}

.footer-right a:hover {
   color: white;
   text-decoration: underline;
}

.terms-content {
   padding: 0 0.5rem;
   color: #3465A4;
   font-size: 0.8rem;
}

.terms-content h3 {
   margin-top: 1rem;
   margin-bottom: 0.5rem;
}

.terms-content h3:first-child {
   margin-top: 0;
}

.terms-content h4 {
   margin-top: 0.5rem;
   margin-bottom: 0.25rem;
}

.terms-content p {
   margin-bottom: 0.25rem;
}

.terms-content ul {
   margin-left: 1rem;
   margin-bottom: 0.5rem;
}

.terms-content li {
   margin-bottom: 0.25rem;
}

.terms-footer {
   margin-top: 2rem;
   padding-top: 1rem;
   border-top: 1px solid #ddd;
   text-align: center;
   color: #666;
}

/* Loader */
.loader {
   display: inline-block;
   width: 28px;
   height: 28px;
   border: 3px solid rgba(52, 101, 164, 0.2);
   border-top-color: #3465A4;
   border-radius: 50%;
   animation: spinner-spin 0.75s linear infinite;
   vertical-align: middle;
   margin: 0 auto;
   flex-shrink: 0;
   padding-top: 0.75rem;
}

@keyframes spinner-spin {
   to { transform: rotate(360deg); }
}

.calendar-day.available {
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.selectedDateRange {
   text-align: center; 
   margin: 6px 0; 
   font-size: 0.8em; 
   min-height: 1.5em; 
   color: #3465A4;
}   

/* Custom highlight styles for interactive date range choice components */
.calendar-day.range-start, 
.calendar-day.range-end {
   background-color: #3465A4 !important;
   color: #ffffff !important;
   border-radius: 4px;
}
.calendar-day.range-between {
   background-color: #e3f2fd !important;
   color: #0d47a1 !important;
}

/* Mobile styles */
@media (max-width: 768px) {
   .menu-toggle {
      display: block;
   }

   nav ul {
      flex-direction: column;
      align-items: center;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
   }

   nav ul.show {
      max-height: 500px;
      transition: max-height 0.5s ease-in;
   }

   nav li {
      margin: 8px 0;
      width: 100%;
      text-align: center;
   }

   nav a {
      display: block;
      padding: 10px 20px;
   }

   .date-inputs {
      grid-template-columns: 1fr;
   }

   .calendar-controls {
      flex-wrap: wrap;
   }

   .calendar-controls button {
      padding: 8px 12px;
      font-size: 0.9rem;
      flex: 1;
      min-width: 80px;
   }

   .current-month {
      font-size: 1.1rem;
      flex-basis: 100%;
      order: -1;
      margin-bottom: 0.5rem;
   }

   .calendar-day-header {
      font-size: 0.8rem;
      padding: 5px;
   }

   .calendar-day {
      font-size: 0.9rem;
   }

   h2 {
      font-size: 1.5rem;
   }

   .tagline {
      font-size: 1.3rem;
   }

   .logo-area {
      min-width: 200px;
   }

   .calendar-legend {
      gap: 1rem;
   }

   .bookings-table {
      font-size: 0.9rem;
   }

   /* Modal responsive */
   .modal-content {
      width: 95%;
      margin: 5% auto;
      padding: 0.5rem;
      max-height: 90vh;
   }

   .modal-close {
      font-size: 1.5rem;
   }

   /* Profile photo responsive */
   .profile-summary {
      flex-direction: column;
      align-items: center;
   }

   .couple-photo {
      height: 200px;
   }


   /* Gallery responsive */
   .carousel-slide img {
      height: 300px;
   }

   .carousel-btn {
      font-size: 1.5rem;
      padding: 0.75rem 1rem;
   }
}

/* Small mobile devices */
@media (max-width: 480px) {
   .calendar-controls button {
      padding: 6px 10px;
      font-size: 0.8rem;
   }

   .current-month {
      font-size: 1rem;
   }

   .month-select {
      font-size: 15px;
      padding: 3px 8px;
   }   

   .calendar-day-header {
      font-size: 0.7rem;
      padding: 3px;
   }

   .bookings-table tr {
      font-size: 0.8em;
   }

   /* Gallery very small screens */
   .carousel-slide img {
      height: 250px;
   }

   .carousel-btn {
      font-size: 1.2rem;
      padding: 0.5rem 0.75rem;
   }

   .prev-btn {
      left: 0.5rem;
   }

   .next-btn {
      right: 0.5rem;
   }

   .carousel-caption {
      font-size: 0.9rem;
      padding: 1.5rem 0.75rem 0.75rem;
   }

   body {
      overflow-x: hidden;
   }

   /* Footer mobile */
   .footer-content {
      flex-direction: column;
      text-align: center;
   }

   .footer-left,
   .footer-right {
      text-align: center;
   }
   
   footer .container {
      margin-bottom: 0.5rem;
   }
}