:root {
    --primary: #3B5F50;
    --primary-light: #5A8574;
    --primary-dark: #1E2D27;
    --accent: #C28C7A;
    --accent-hover: #A6705E;
    --bg-main: #FAF7F2;
    --bg-card: rgba(246, 243, 237, 0.75);
    --secondary: #F0EDE8;
    --text-color: #4A5550;
    --text-light: #7A8C87;
    --whatsapp: #25D366;
    --whatsapp-hover: #1EBE5A;
    --instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --instagram-hover: radial-gradient(circle at 30% 107%, #fef6a7 0%, #fef6a7 5%, #ff6a5a 45%, #e735b0 60%, #396bfb 90%);
    --border-color: rgba(59, 95, 80, 0.15);
    --footer-bg: #1E2D27;
    --footer-text: #C8D5D1;
    --heading-color: #1E2D27;
    --subheading-color: #3B5F50;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', 'Inter', sans-serif;
    --radius-pill: 50px;
    --radius-card: 20px;
    --padding-section: 7rem 0;
}

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

html {
    overflow: hidden;
    height: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-color);
    line-height: 1.7;
}

/* Button row */
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-row .btn {
        width: 100%;
        justify-content: center;
    }
}

h1,
h2,
h3,
h4,
.logo-text,
.pre-title {
    font-family: var(--font-heading);
    color: var(--heading-color);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--subheading-color);
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--subheading-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-sm {
    max-width: 900px;
}

.section-padding {
    padding: var(--padding-section);
}

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

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

.blob {
    position: fixed;
    filter: blur(90px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.45;
    animation: float 12s ease-in-out infinite;
    pointer-events: none;
}

.blob-1 {
    width: 40vw;
    height: 40vw;
    top: -5vw;
    right: -5vw;
    background: #E6DDD0;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    top: 40%;
    left: -5vw;
    background: #DDD3C2;
    animation-delay: -4s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    bottom: -5vw;
    right: -2vw;
    background: #EAE2D5;
    animation-delay: -8s;
}

@media (max-width: 768px) {
    .blob-1 {
        width: 55vw;
        height: 55vw;
        top: -10vw;
        right: -5vw;
    }

    .blob-2 {
        width: 50vw;
        height: 50vw;
        left: -5vw;
    }

    .blob-3 {
        width: 40vw;
        height: 40vw;
        bottom: -5vw;
        right: -2vw;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.04);
    }
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(30, 45, 39, 0.03);
    border-radius: var(--radius-card);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30, 45, 39, 0.07);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(194, 140, 122, 0.25);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 8px 30px rgba(194, 140, 122, 0.35);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--primary-dark);
}

.btn-giant {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glass-nav {
    background: rgba(245, 240, 232, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200, 185, 155, 0.3);
}

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

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links .btn {
    padding: 0.5rem 1.25rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-top: 6rem;
}

.pre-title {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: 0.35rem 1.1rem;
    background: var(--secondary);
    border-radius: var(--radius-pill);
    color: var(--primary-dark);
    border: 1px solid rgba(139, 139, 90, 0.2);
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 92%;
    line-height: 1.75;
}

.hero-actions {
    margin-bottom: 3rem;
}

.support-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.85rem;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

.stat-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.image-glass-frame {
    position: relative;
    padding: 0.75rem;
    background: rgba(250, 247, 242, 0.5);
    border: 1px solid rgba(59, 95, 80, 0.12);
    border-radius: 24px;
    z-index: 1;
}

.image-glass-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--accent);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-wrapper:hover .image-glass-frame::before,
.about-image-wrapper:hover .image-glass-frame::before {
    transform: translate(-5px, -5px);
}

.hero-image {
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 35px rgba(30, 45, 39, 0.08);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
    gap: 5rem;
}

.about-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.about-image {
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.floating-quote {
    background: var(--accent);
    color: white;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-top: 2.5rem;
    box-shadow: 0 10px 30px rgba(194, 140, 122, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-quote i {
    font-size: 1.5rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.floating-quote cite {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-subheading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--subheading-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.highlights {
    list-style: none;
    margin-top: 0.5rem;
}

.highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
    line-height: 1.65;
}

.highlights i {
    color: var(--primary-light);
    font-size: 0.75rem;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.credentials-list {
    list-style: none;
    margin-top: 0.5rem;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
    font-size: 0.93rem;
    line-height: 1.6;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(139, 139, 90, 0.12);
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list i {
    color: var(--primary-light);
    font-size: 0.75rem;
    margin-top: 0.42rem;
    flex-shrink: 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.25rem 2rem;
    text-align: center;
}

.icon-wrapper {
    width: 68px;
    height: 68px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary-light);
    font-size: 1.6rem;
    border: 2px solid rgba(127, 174, 154, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.info-section {
    position: relative;
}

.subtitle-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    padding: 2.5rem 2rem;
    text-align: left;
}

.info-icon {
    font-size: 1.75rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
    display: block;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(139, 139, 90, 0.1);
    font-size: 0.95rem;
    gap: 1rem;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: var(--primary-dark);
    min-width: 90px;
}

.day-hours {
    color: var(--text-light);
    text-align: right;
    font-size: 0.9rem;
}

.day-full {
    color: var(--primary-light);
    font-weight: 500;
}

.day-off {
    color: #BBAA99;
    font-style: italic;
}

.unstyled-list {
    list-style: none;
}

.unstyled-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.location-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.location-list .pin {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon {
    color: var(--primary-light);
    opacity: 0.25;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    flex-grow: 1;
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar i {
    font-size: 2.25rem;
    color: var(--primary-light);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.contact-container {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    background: var(--secondary);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--footer-bg);
    color: var(--footer-text);
}

footer p {
    color: var(--footer-text);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: var(--footer-text);
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

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

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero .subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid,
    .info-cards,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-image-wrapper {
        order: -1;
    }

    .contact-content {
        padding: 3rem 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(245, 240, 232, 0.98);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(200, 185, 155, 0.3);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.1rem;
    }

    .hero-stats {
        display: none;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .container {
        width: 92%;
    }

    .btn-giant {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .schedule-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .day-hours {
        text-align: left;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .stepper-progress {
        padding: 0;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .form-actions.flex-between {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-actions.flex-between .btn {
        width: 100%;
    }

    .form-actions.flex-between .btn-prev {
        order: 2;
    }

    .form-actions.flex-between .btn-next,
    .form-actions.flex-between .btn-submit {
        order: 1;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 42, 30, 0.45);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: rgba(251, 246, 238, 0.97);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(255, 252, 245, 0.9);
    transition: border-color 0.3s, box-shadow 0.3s;
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(194, 140, 122, 0.15);
}

.w-100 {
    width: 100%;
}

.stepper-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.step {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 0 4px rgba(194, 140, 122, 0.25);
}

.step.completed {
    background: var(--primary);
    color: white;
}

.step-line {
    flex-grow: 1;
    height: 3px;
    background: var(--secondary);
    margin: 0 8px;
    z-index: 1;
    transition: background 0.3s ease;
}

.step-line.active {
    background: var(--primary);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.step-title {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.mt-buttons {
    margin-top: 2rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swal2-container {
    z-index: 3000 !important;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
    color: white;
}

.floating-instagram {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background: var(--instagram);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.floating-instagram:hover {
    transform: scale(1.1);
    background: var(--instagram-hover);
    color: white;
}

.footer-social {
    margin: 1.25rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--footer-text);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Custom Interactive Step Cards */
.custom-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.custom-cards-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 480px) {
    .custom-cards-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}

.option-card {
    background: rgba(255, 252, 245, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.15rem 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.option-card i {
    font-size: 1.35rem;
    color: var(--primary-light);
    transition: color 0.3s ease, transform 0.3s ease;
}

.option-card span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.25;
}

.option-card small {
    font-size: 0.7rem;
    color: var(--text-light);
    line-height: 1.2;
}

.option-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    background: rgba(255, 252, 245, 0.95);
    box-shadow: 0 4px 15px rgba(59, 95, 80, 0.08);
}

.option-card:hover i {
    transform: scale(1.1);
    color: var(--primary);
}

.option-card.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 95, 80, 0.25);
}

.option-card.selected i,
.option-card.selected span,
.option-card.selected small {
    color: white !important;
}