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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #732d91 0%, #8e44ad 100%);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: #8e44ad;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #732d91;
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    min-width: 200px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 100px;
}

.btn-service-details {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-service-details:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1c598a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(142, 68, 173, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-logo-image {
    height: 45px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8e44ad;
}

.nav-link.book-now {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.book-now:hover {
    background: linear-gradient(135deg, #732d91 0%, #8e44ad 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 3px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(142, 68, 173, 0.8) 0%, 
        rgba(155, 89, 182, 0.7) 50%, 
        rgba(52, 152, 219, 0.6) 100%
    ),
    url('../images/spa-hero-background.jpg') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease-out;
}

.hero-content h1 {
    font-family: 'Pinyon Script', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 3rem;
    color: #8e44ad;
    margin-bottom: 1rem;
    display: block;
}

/* Section icon color accents */
#about .section-icon { color: #e74c3c; }          /* Heart - red */
#services .section-icon { color: #27ae60; }       /* Leaf - green */
#testimonials .section-icon { color: #f1c40f; }   /* Star - gold */
.policies .section-icon { color: #3498db; }       /* Info - blue */
#contact .section-icon { color: #7FB3FF; }        /* Map - sky */

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.credentials {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.credentials h3 {
    color: #8e44ad;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

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

.credentials li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8e44ad, #3498db);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card[data-category="facials"] .service-icon {
    background: linear-gradient(135deg, #F6A7C4, #E779A6);
}

.service-card[data-category="massage"] .service-icon {
    background: linear-gradient(135deg, #9DE2D5, #6CCFC0);
}

.service-card[data-category="permanent"] .service-icon {
    background: linear-gradient(135deg, #C6B0FF, #A68BFF);
}

.service-card[data-category="waxing"] .service-icon {
    background: linear-gradient(135deg, #FFD27A, #FFBC4D);
    color: #ffffff;
}

.service-card[data-category="lamprobe"] .service-icon {
    background: linear-gradient(135deg, #A9CEFF, #7FB3FF);
}

.service-card[data-category="wellness"] .service-icon {
    background: linear-gradient(135deg, #98E9D2, #6FDDB9);
    color: #ffffff;
}

.service-card[data-category="piercings"] .service-icon {
    background: linear-gradient(135deg, #B3C7FF, #90AEFF);
}

.service-card[data-category="lashes"] .service-icon {
    background: linear-gradient(135deg, #C6AEFF, #A789FF);
}

.service-card[data-category="intake"] .service-icon {
    background: linear-gradient(135deg, #FFD9A1, #FFC170);
    color: #ffffff;
}

.service-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.service-features span {
    background: #f1f3f4;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Services grid placeholder (keeps layout slot blank) */
.service-card--placeholder {
    min-height: 460px;
    background: transparent;
    box-shadow: none;
}

.service-card--placeholder:before {
    content: none;
}

/* Service Details Modal */
.service-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-details-overlay.active {
    display: block;
    opacity: 1;
}

.service-details-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2001;
    display: none;
    transition: all 0.3s ease;
}

.service-details-modal.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #8e44ad;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Generic small inline logo used as an icon in headings */
.icon-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 6px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

.modal-content {
    padding: 30px;
}

.treatments-list {
    display: grid;
    gap: 25px;
}

.treatment-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #8e44ad;
}

.treatment-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.treatment-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.modal-footer {
    text-align: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.modal-footer p {
    margin: 0;
    font-size: 1.1rem;
}

.modal-footer a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    max-width: 100%;
    width: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.25);
}

.testimonial-text h3 {
    margin-bottom: 12px;
    color: #2c3e50;
}

.testimonial-text blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    background: #f8f9fa;
    padding: 20px 24px;
    border-left: 4px solid #8e44ad;
    border-radius: 8px;
}

.testimonial-author {
    margin-top: 16px;
    color: #666;
}

.testimonial-author p {
    margin: 0; /* remove extra space between lines */
}

/* Policies Section */
.policies {
    background: #f8f9fa;
    padding: 60px 0;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.policy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-card h3 {
    color: #8e44ad;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.policy-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8e44ad;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-card a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.text-small {
    font-size: 0.9rem !important;
    color: #999 !important;
    margin-top: 5px !important;
}

.contact-card--placeholder {
    background: transparent;
    box-shadow: none;
    min-height: 220px;
}

.contact-card--placeholder:hover {
    transform: none;
    box-shadow: none;
}

.contact-photo {
    display: block;
    margin: 0;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card--media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-form-container {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.contact-form-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-form-card p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

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

.booking-options .btn-primary {
    background: white;
    color: #8e44ad;
}

.booking-options .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.booking-options .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    backdrop-filter: blur(10px);
}

.booking-options .btn-outline:hover {
    background: white;
    color: #8e44ad;
}

.hours-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-info h4 {
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hours-info p {
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
}

.footer-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-brand p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-brand .address {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a,
.footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8e44ad;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-family: 'Pinyon Script', cursive;
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        flex-direction: column;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 60px 0;
    }
    
    .service-details-modal {
        width: 95%;
        max-height: 90vh;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-image img {
        max-height: 300px;
    }
    .testimonial-badge {
        top: 8px;
        left: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-family: 'Pinyon Script', cursive;
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .credentials {
        padding: 20px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .modal-header,
    .modal-content {
        padding: 20px;
    }
    
    .treatment-item {
        padding: 15px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Enhanced hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
