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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* Accessibility: Skip to main content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #d4526e;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #b8334a;
    outline-offset: 2px;
}

/* Accessibility: Focus indicators for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #d4526e;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Remove default focus outline only when using focus-visible */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* Accessibility: Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #d4526e;
    font-size: 1.8rem;
    font-weight: 700;
}

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

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

.nav-menu a:hover {
    color: #d4526e;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 238, 241, 0.9) 0%, rgba(248, 232, 235, 0.9) 100%),
                url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 15%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 8%; animation-delay: 2s; }
.element-4 { top: 60%; right: 12%; animation-delay: 0.5s; }
.element-5 { bottom: 20%; right: 20%; animation-delay: 1.5s; }
.element-6 { top: 40%; left: 5%; animation-delay: 2.5s; }
.element-7 { top: 70%; left: 15%; animation-delay: 3s; }
.element-8 { top: 30%; right: 8%; animation-delay: 0.8s; }
.element-9 { bottom: 40%; left: 20%; animation-delay: 1.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Background Effects */
.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbit 20s linear infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #d4526e, #ff6b9d);
    top: 10%;
    left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    top: 60%;
    right: -5%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #a8e6cf, #dcedc8);
    bottom: 10%;
    left: 60%;
    animation-duration: 35s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 82, 110, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; right: 30%; animation-delay: 2s; }
.particle:nth-child(3) { bottom: 30%; left: 40%; animation-delay: 4s; }
.particle:nth-child(4) { top: 70%; right: 15%; animation-delay: 1s; }
.particle:nth-child(5) { bottom: 60%; left: 80%; animation-delay: 3s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    background: linear-gradient(135deg, rgba(212, 82, 110, 0.15) 0%, rgba(255, 107, 157, 0.15) 100%);
    border: 2px solid rgba(212, 82, 110, 0.4);
    border-radius: 50px;
    padding: 10px 25px;
    display: inline-block;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(212, 82, 110, 0.2);
}

.hero-badge.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(212, 82, 110, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(212, 82, 110, 0.3); }
}

.hero-badge span {
    background: linear-gradient(135deg, #d4526e 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #d4526e 0%, #ff6b9d 50%, #b8334a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 .main-text {
    color: #333;
    font-weight: 600;
}

.hero h1 .gradient-text-alt {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(135deg, #d4526e 0%, #b8334a 50%, #d4526e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.5px rgba(180, 51, 74, 0.3);
    padding: 0 5px;
    margin: 0 -5px;
    display: inline-block;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-item span {
    color: #444;
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.mini-stat strong {
    display: block;
    font-size: 1.5rem;
    color: #d4526e;
    font-weight: 700;
    line-height: 1;
}

.mini-stat span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-indicators span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-button {
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.cta-button.primary {
    background: linear-gradient(135deg, #d4526e 0%, #b8334a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 82, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button.primary.glow {
    box-shadow: 0 0 20px rgba(212, 82, 110, 0.4), 0 4px 15px rgba(212, 82, 110, 0.3);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button.primary:hover .button-shine {
    left: 100%;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #d4526e;
    border: 2px solid #d4526e;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    box-shadow: 0 0 30px rgba(212, 82, 110, 0.5), 0 8px 25px rgba(212, 82, 110, 0.4);
}

.cta-button.secondary:hover {
    background: #d4526e;
    color: white;
    box-shadow: 0 8px 25px rgba(212, 82, 110, 0.3);
}

/* Social Proof */
.social-proof {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-snippet {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-snippet p {
    font-style: italic;
    color: #444;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.testimonial-snippet span {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 4rem;
}

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

.service-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 82, 110, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 82, 110, 0.2);
    border-color: rgba(212, 82, 110, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section - Social Media Links */
.gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.gallery-description {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #d4526e;
    font-weight: 600;
    margin-bottom: 2rem;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.social-link {
    background: white;
    border-radius: 25px;
    padding: 4rem 5rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 320px;
    text-align: center;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.pinterest:hover {
    background: #E60023;
    color: white;
}

.social-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon svg {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon svg {
    transform: scale(1.1);
}

.social-link h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.social-link p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .social-media-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 350px;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.about-features li {
    font-size: 1.1rem;
    color: #d4526e;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.about-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4526e;
    font-weight: bold;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #d4526e;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Cards Section */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 82, 110, 0.1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 82, 110, 0.15);
    border-color: rgba(212, 82, 110, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4526e 0%, #b8334a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 82, 110, 0.3);
}

.info-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card p {
    font-size: 1.1rem;
    color: #d4526e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    font-size: 0.9rem;
    color: #999;
    display: block;
}

/* Contact Form Section */
.contact-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 82, 110, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4526e;
    box-shadow: 0 0 0 4px rgba(212, 82, 110, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #d4526e 0%, #b8334a 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(212, 82, 110, 0.3);
}

.submit-button svg {
    width: 20px;
    height: 20px;
    stroke: white;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 82, 110, 0.4);
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.submit-button:active {
    transform: translateY(0);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #d4526e;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 82, 110, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    color: #d4526e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-info p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact-info strong {
    color: #d4526e;
    margin-right: 0.5rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #d4526e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links,
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a svg {
    width: 18px;
    height: 18px;
    stroke: #d4526e;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #d4526e;
    padding-left: 5px;
}

.footer-links a:hover svg {
    transform: translateX(3px);
}

.footer-services li {
    color: #999;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.footer-services li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4526e;
    font-weight: bold;
}

.social-text {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-icon-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-icon-link svg {
    width: 22px;
    height: 22px;
    fill: #bbb;
    transition: fill 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 82, 110, 0.3);
}

.social-icon-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
}

.social-icon-link.instagram:hover svg {
    fill: white;
}

.social-icon-link.facebook:hover {
    background: #1877f2;
    border-color: transparent;
}

.social-icon-link.facebook:hover svg {
    fill: white;
}

.social-icon-link.pinterest:hover {
    background: #E60023;
    border-color: transparent;
}

.social-icon-link.pinterest:hover svg {
    fill: white;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Optimization */
/* Fix iOS Safari issues */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
}

/* Android Chrome optimization */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero {
        background-attachment: scroll;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover {
        transform: none;
    }

    .cta-button:active {
        transform: scale(0.95);
    }

    .feature-item:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .gallery-item:hover {
        transform: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        background-attachment: scroll;
        padding: 80px 0 40px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .hero-stats-mini {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .mini-stat strong {
        font-size: 1.3rem;
    }

    .mini-stat span {
        font-size: 0.8rem;
    }

    .trust-indicators {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators span {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 5px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 14px 25px;
        min-width: 200px;
        font-size: 1rem;
        font-weight: 600;
    }

    .floating-element {
        font-size: 1.2rem;
        opacity: 0.4;
    }

    /* Reduce animations on mobile for better performance */
    .orb {
        animation-duration: 40s;
    }

    .particle {
        display: none;
    }

    .hero-badge {
        padding: 8px 20px;
        margin-bottom: 1.5rem;
    }

    .hero-badge span {
        font-size: 0.85rem;
    }

    .services h2,
    .gallery h2,
    .about h2,
    .contact h2 {
        font-size: 2.2rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* FAQ Mobile Styles */
    .faq {
        padding: 60px 0;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 15px 40px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1rem 0;
    }

    .feature-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .hero-stats-mini {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .mini-stat strong {
        font-size: 1.2rem;
    }

    .mini-stat span {
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 12px 20px;
        min-width: 160px;
        font-size: 0.95rem;
    }

    .hero-badge span {
        font-size: 0.8rem;
    }

    .trust-indicators span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-main {
        padding: 35px 0 25px;
    }

    .social-icon-link {
        width: 42px;
        height: 42px;
    }

    .social-icon-link svg {
        width: 20px;
        height: 20px;
    }

    /* Hamburger menu touch optimization */
    .hamburger {
        padding: 10px;
        margin: -10px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }

    /* Navigation touch targets */
    .nav-menu a {
        padding: 15px 20px;
        margin: 5px 0;
        display: block;
    }
}