@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-blue: #4A7C93;
    --light-blue: #A9D0E0;
    --off-white: #F0F5F7;
    --muted-grey: #6E7E8F;
    --dark-navy: #2B3C4A;
    --soft-rose: #DBB1BC;
    
    --font-primary: 'Playfair Display', serif;
    --font-fallback: 'Roboto', sans-serif;
    
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.4s ease-out;
    --transition-slow: 0.7s ease-out;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fallback);
    color: var(--muted-grey);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--dark-navy);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 6rem 0;
    }
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-fallback);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.button:active::after {
    transform: scale(2);
    opacity: 1;
    transition: transform 0s, opacity 0s;
}

.button.primary {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.button.primary:hover {
    background-color: var(--light-blue);
    color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button.secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.button.secondary:hover {
    background-color: var(--light-blue);
    color: var(--dark-navy);
    border-color: var(--light-blue);
}

.button-link {
    color: var(--primary-blue);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button-link:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    transition: var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

.top-bar {
    background-color: var(--dark-navy);
    padding: 0.5rem 0;
    display: none;
}

@media (min-width: 1025px) {
    .top-bar {
        display: block;
    }
}

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

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
}

.top-bar-info address {
    font-style: normal;
    color: var(--muted-grey);
}

.top-bar-info a {
    color: var(--light-blue);
}

.top-bar-info a:hover {
    color: white;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted-grey);
}

.top-bar-social span {
    color: var(--muted-grey);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.social-icon:hover {
    transform: translateY(-3px);
    fill: var(--light-blue);
}

.main-header {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition-medium);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.nav-desktop {
    display: none;
}

@media (min-width: 1025px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-grey);
    position: relative;
    padding: 0.5rem 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--primary-blue);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark-navy);
    transition: var(--transition-fast);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-navy);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav a {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.mobile-nav a:hover {
    color: var(--primary-blue);
}

.mobile-nav-quick-actions {
    margin-top: 1rem;
    text-align: center;
}

.mobile-nav-quick-actions a {
    display: block;
    font-family: var(--font-fallback);
    font-size: 1rem;
    margin: 0.5rem 0;
    color: var(--muted-grey);
}

.mobile-nav-social {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.mobile-nav-social svg {
    width: 24px;
    height: 24px;
    fill: var(--muted-grey);
}

.mobile-cta {
    display: block;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(169, 208, 224, 0.2) 0%, rgba(74, 124, 147, 0.15) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero h1 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero p {
    font-size: 1.125rem;
    color: var(--muted-grey);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hero .button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-banner {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-blue) 100%);
    position: relative;
    padding-top: 100px;
}

.hero-banner h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A7C93' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

/* About Snippet */
.about-snippet {
    background: white;
}

.about-snippet .container {
    max-width: 800px;
    text-align: center;
}

.about-snippet h2 {
    margin-bottom: 1.5rem;
}

.about-snippet p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-snippet .button {
    margin-top: 1.5rem;
}

/* Featured Services */
.featured-services {
    background: var(--off-white);
}

.featured-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    text-align: center;
}

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

.service-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: white;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 6rem;
    color: var(--light-blue);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card footer {
    font-weight: 600;
    color: var(--primary-blue);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    background: none;
    border: 1px solid var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.testimonial-nav button:hover {
    background: var(--primary-blue);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-blue);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--primary-blue);
}

/* CTA Banner */
.cta-banner {
    background: var(--light-blue);
    text-align: center;
    padding: 4rem 0;
}

.cta-banner h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
}

.cta-banner .button {
    background: var(--primary-blue);
    color: white;
}

.cta-banner .button:hover {
    background: var(--dark-navy);
    color: white;
}

/* Mission & Values */
.mission-values {
    background: white;
}

.mission-values .container {
    max-width: 800px;
}

.mission-values h2 {
    margin-bottom: 1.5rem;
}

.mission-values p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-values h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mission-values ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.mission-values li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mission-values li::before {
    content: '•';
    color: var(--primary-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

/* Team */
.team-section {
    background: var(--off-white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.team-member-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--light-blue);
}

.team-member-card h3 {
    margin-bottom: 0.5rem;
}

.team-member-card p {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-card p:last-child {
    color: var(--muted-grey);
    font-size: 0.9375rem;
    font-weight: 400;
}

/* Service Categories */
.service-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.category {
    margin-bottom: 4rem;
}

.category h3 {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-blue);
    display: inline-block;
}

.category > p {
    margin-bottom: 2rem;
}

.service-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .service-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.service-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.service-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.service-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Men's Treatments */
.mens-treatments {
    background: var(--off-white);
}

.mens-treatments h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Technology */
.featured-tech {
    background: white;
}

.featured-tech h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.technology-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .technology-item {
        grid-template-columns: 300px 1fr;
        align-items: center;
    }
}

.technology-item:nth-child(even) {
    direction: rtl;
}

.technology-item:nth-child(even) > * {
    direction: ltr;
}

.technology-item img {
    width: 100%;
    border-radius: 8px;
    transition: var(--transition-medium);
}

.technology-item img:hover {
    box-shadow: var(--shadow-strong);
}

.technology-item h3 {
    margin-bottom: 1rem;
}

.technology-item p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.technology-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.technology-item ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.technology-item li {
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
}

.technology-item li::before {
    content: '✓';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Page */
.contact-details {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-fallback);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 124, 147, 0.1);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info address {
    font-style: normal;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--primary-blue);
}

.contact-info a:hover {
    color: var(--light-blue);
}

.contact-info h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.contact-info .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-info .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    transition: var(--transition-fast);
}

.contact-info .social-links a:hover {
    background: var(--primary-blue);
}

.contact-info .social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--muted-grey);
    transition: var(--transition-fast);
}

.contact-info .social-links a:hover svg {
    fill: white;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    background: var(--off-white);
}

/* Footer */
.footer {
    background: var(--off-white);
    padding: 3rem 0 1.5rem;
}

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

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer h4 {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--dark-navy);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.5rem;
}

.footer a {
    font-size: 0.9375rem;
}

.footer a:hover {
    color: var(--primary-blue);
}

.footer-cta .button {
    width: 100%;
    margin-bottom: 1rem;
}

.footer-cta .button-link {
    display: block;
    text-align: center;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom .legal-links a {
    font-size: 0.875rem;
    color: var(--muted-grey);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-blue);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--muted-grey);
    transition: var(--transition-fast);
}

.footer-social a:hover svg {
    fill: white;
}

/* Mobile FAB */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-strong);
}

body.contact-page .mobile-fab {
    display: none !important;
}

@media (max-width: 640px) {
    .mobile-fab {
        display: block;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for service cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

.team-member-card:nth-child(1) { transition-delay: 0s; }
.team-member-card:nth-child(2) { transition-delay: 0.15s; }
.team-member-card:nth-child(3) { transition-delay: 0.3s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero h1, .hero p, .hero .button {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
