/* CSS Variables */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
    --gold: hsl(33, 45%, 50%);
    --navy: hsl(210, 57%, 19%);
    --magenta: hsl(352, 100%, 64%);
    --orange: hsl(31, 100%, 50%);
    --white: hsl(0, 0%, 100%);
    --muted: hsl(33, 20%, 96%);
    --nav-height: 80px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Open Sans", sans-serif;

    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 15px;
    position: relative;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
    /*background: rgba(28, 47, 72, 0.95);*/
    /*backdrop-filter: blur(12px);*/
    min-height: var(--nav-height);
    transition: background 0.3s ease;
}

.nav-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: start;
    grid-column: 1;
    
}

.logo {
    color: var(--gold);
    font-size: 1.875rem;
    
    font-weight: 600;
}

.logo img {
    max-width: 330px;
}

/* RTL Support for Navigation */
[dir="rtl"] .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 320px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    overflow-y: auto;
    border-right: 1px solid rgba(186, 126, 60, 0.2);
    border-left: none;
}

/* LTR Support for Navigation */
[dir="ltr"] .nav-links,
.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 320px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
    overflow-y: auto;
    border-left: 1px solid rgba(186, 126, 60, 0.2);
}

.nav-links.open {
    transform: translateX(0);
}

/* Backdrop for mobile nav */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: all;
    display: block;
}

body.menu-open {
    overflow: hidden;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(186, 126, 60, 0.1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex-shrink: 0;
    grid-column: 3;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(186, 126, 60, 0.1);
    border-radius: 20px;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    
    transition: all 0.3s ease;
    border-radius: 15px;
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-btn.active {
    background: #fff;
    color: var(--navy);
}

@media (max-width: 768px) {
    .language-switcher {
        display: flex;
    }
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Menu Toggle Button */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    gap: 0.2rem;
    flex-direction: column;
    width: 3rem;
    height: auto;
}

.menu-toggle:hover {
    color: var(--gold);
}

.menu-toggle:hover .menu-icon {
    stroke: var(--gold);
}

.menu-icon {
    stroke: rgba(186, 126, 60, 0.8);
    transition: stroke 0.3s ease;
}

/* Cart Icon */
.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon-wrapper:hover .icon {
    stroke: var(--gold);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--navy);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(28, 47, 72, 0.95);
}

.social-icon {
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.menu-icon {
    color: var(--gold);
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
}


.nav-backdrop {
    display: none;
}

@media (max-width: 767px) {
    :root {
        --nav-height: 64px;
    }

    .nav-content {
        padding: 0.75rem 1rem;
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
    }

    .nav-left {
        gap: 1rem;
        grid-column: 1;
        justify-content: flex-start;
        display: none;
    }

    .nav-right {
        gap: 0.75rem;
        grid-column: 2;
    }

    .nav-right .social-icon {
        display: none;
    }

    .logo img {
        max-width: 160px;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: var(--nav-height);
        inset-inline-start: 0;
        inset-inline-end: 0;
        background: rgba(28, 47, 72, 0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 1.5rem 3rem;
        height: calc(100vh - var(--nav-height));
        width: 100%;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        border-top: 1px solid rgba(186, 126, 60, 0.2);
        z-index: 60;
    }

    [dir="rtl"] .nav-links {
        align-items: flex-end;
        transform: translateX(-100%);
        text-align: right;
    }

    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links .nav-link {
        font-size: 1.125rem;
        display: block;
        width: 100%;
    }

    .nav-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: 1px solid rgba(186, 126, 60, 0.3);
        border-radius: 0.25rem;
        color: var(--gold);
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
        align-self: flex-end;
    }

    [dir="rtl"] .nav-close-btn {
        align-self: flex-start;
    }

    .nav-close-btn:hover {
        background: rgba(186, 126, 60, 0.1);
        color: var(--white);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 40;
    }

    .nav-backdrop.is-visible {
        display: block;
    }
}
 .nav-close-btn {
    background: transparent;
    position: absolute;
    top: 20px;
    left: 20px;
    border:none;
    cursor: pointer;
}
.nav-close-btn .icon {
    width:2rem;
    height:2rem;
}
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        padding: 0;
        border-top: none;
        height: auto;
        overflow: visible;
        z-index: auto;
    }

   
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        
    }

    .section-title {
        font-size: 3rem;
    }

    .procedure-title {
        font-size: 2rem;
    }

   
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 47, 72, 0.6), rgba(28, 47, 72, 0.5), rgba(28, 47, 72, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}



.star-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
    margin: 5px;
    animation: float 3s ease-in-out infinite;
}



.hero-title {
    font-size: 4rem;
    
    margin-bottom: 1.5rem;
    color: var(--white);
    
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.text-gold {
    color: var(--gold);
}

.hero-divider {
    width: 8rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 1.875rem;
    color: rgba(186, 126, 60, 0.9);
    font-weight: 300;
    
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(245, 239, 229, 0.3), var(--white));
    pointer-events: none;
}

.bg-white {
    background: var(--white);
}

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

.bg-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--muted) 50%, var(--white) 100%);
}

.bg-blur {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.blur-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(96px);
}

.blur-gold {
    background: var(--gold);
    top: 0;
    left: 0;
}

.blur-magenta {
    background: var(--magenta);
    bottom: 0;
    right: 0;
}

.blur-gold-center {
    background: var(--gold);
    top: 25%;
    left: 25%;
}

.blur-magenta-center {
    background: var(--magenta);
    bottom: 25%;
    right: 25%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-label {
    color: var(--gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 300;
}

.section-label.text-gold {
    color: var(--gold);
}

.section-title {
    /*font-size: 4.5rem;*/
    
    color: var(--navy);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-title.text-gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    
    margin-top: 1rem;
}

/* Ornamental Divider */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.ornamental-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
    max-width: 200px;
}

.ornamental-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Grid Layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media (min-width: 768px) {
    .order-1 {
        order: 2;
    }
    .order-2 {
        order: 1;
    }
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    border-radius: 0.5rem;
}

.image-glow.gold {
    background: #eee;
    /*background: linear-gradient(135deg, rgba(186, 126, 60, 0.2), transparent);*/
}

.image-glow.gold-magenta {
    background: #eee;
}

.image-glow.gold-magenta-light {
    background: #eee;
}

.image-glow.navy {
    background: #eee;
}

.portrait-image {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Text Content */
.text-content {
    color: rgba(28, 47, 72, 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 300;
}

.text-content.text-white {
    color: rgba(255, 255, 255, 0.8);
}

.text-gold-bold {
    color: var(--gold);
    font-weight: 500;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    text-decoration: none;
}


.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: rgba(186, 126, 60, 0.9);
}

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

.btn-magenta:hover {
    background: rgba(252, 73, 119, 0.9);
}

/* Procedures List */
.procedures-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.procedure-title {
    font-size: 2.5rem;
    
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(186, 126, 60, 0.3);
}

.procedure-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.procedure-item {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.procedure-item:hover {
    color: var(--gold);
}

/* Tabs */
.tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 3rem;
    

    padding: 0.5rem;
    border-radius: 0.25rem;
}

@media (max-width: 768px) {
    .tabs-list {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        grid-template-columns: none;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .tabs-list::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .tab-trigger {
        flex: 0 0 auto;
        min-width: 140px;
        scroll-snap-align: start;
        white-space: nowrap;
    }
}


.tab-trigger:hover {
    color: var(--gold) !important;
}

.tab-trigger.active {
    /*background: var(--gold);*/
    color: var(--gold) !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.procedure-detail-title {
    font-size: 2.5rem;
    
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 5rem;
    height: 2px;
    background: rgba(186, 126, 60, 0.5);
    margin-bottom: 1.5rem;
}

/* Gallery */
.gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 1.5rem;
    color: rgba(28, 47, 72, 0.7);
    font-weight: 300;
    margin-top: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
}

.gallery-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    
    z-index: 10;
}

.gallery-label-before {
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(186, 126, 60, 0.3);
}

.gallery-label-after {
    background: var(--gold);
    color: var(--navy);
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* Before/After slider */
.ba-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.ba-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.ba-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ba-overlay > .ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.2));
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
    transform: translateX(-1px);
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: radial-gradient(circle at 30% 30%, var(--magenta), var(--gold));
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    cursor: ew-resize;
}

.gallery-label-right {
    left: auto;
    right: 1.5rem;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gallery-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--navy);
    border: 1px solid rgba(186, 126, 60, 0.3);
    color: var(--gold);
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(28, 47, 72, 0.9);
}

.gallery-indicators {
    display: flex;
    gap: 0.75rem;
}

.indicator {
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    background: rgba(28, 47, 72, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--gold);
    width: 3rem;
}



.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon.small {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 300;
    font-style: italic;
}

.review-author {
    color: var(--gold);
    font-size: 1.125rem;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.instagram-item {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(28, 47, 72, 0.1), rgba(186, 126, 60, 0.1));
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(186, 126, 60, 0.2);
}

.instagram-item:hover {
    transform: scale(1.05);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .contact-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}



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

.contact-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(186, 126, 60, 0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--gold);
}

.contact-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-text {
    color: rgba(28, 47, 72, 0.7);
    font-size: 1.125rem;
    font-weight: 300;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 24rem;
    background: linear-gradient(135deg, rgba(28, 47, 72, 0.1), rgba(186, 126, 60, 0.1));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(186, 126, 60, 0.2);
}

.map-text {
    color: rgba(28, 47, 72, 0.5);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0;
    border-top: 1px solid rgba(186, 126, 60, 0.2);
}

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

.footer-star {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 300;
    
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social .social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Procedures Section Background */


#procedures .container {
    position: relative;
    z-index: 2;
}

.procedures-image-bg {
    display: none;
}

@media (max-width: 768px) {
    #procedures {
        background-attachment: scroll;
    }
}

/* Smooth Scrolling for Links */
html {
    scroll-padding-top: 5rem;
}

