/*******************************************
 * Juliana Marie Designs - Custom Styles
 * Rose Gold & Beige Luxury Theme
 *******************************************/

/* CSS Variables for Easy Theme Management */
:root {
    /* Primary Rose Gold Palette */
    --rose-gold-primary: #B76E79;
    --rose-gold-dark: #9A5A64;
    --rose-gold-light: #D4A5AD;
    --rose-gold-pale: #E8C4CA;
    --rose-gold-gradient: linear-gradient(135deg, #B76E79 0%, #D4A5AD 50%, #E8C4CA 100%);
    
    /* Beige/Cream Palette */
    --beige-primary: #F5E6D3;
    --beige-light: #FAF3EB;
    --beige-dark: #E8DCC8;
    --beige-warm: #EDE4D3;
    --cream: #FFFDF9;
    
    /* Accent Colors */
    --champagne: #F7E7CE;
    --blush: #F4C2C2;
    --taupe: #B8A99A;
    --warm-white: #FFFCF8;
    
    /* Text Colors */
    --text-dark: #3D3D3D;
    --text-medium: #6B6B6B;
    --text-light: #9A9A9A;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 80px;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--rose-gold-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 500;
    transition: top 0.3s ease;
}

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

/* Better focus indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--rose-gold-primary);
    outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--rose-gold-primary);
    outline-offset: 2px;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--rose-gold-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--rose-gold-dark);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar-custom {
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(183, 110, 121, 0.08);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(183, 110, 121, 0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--rose-gold-primary);
    display: inline-flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.navbar-custom .nav-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 18px !important;
    margin: 0 3px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .nav-link:hover {
    color: var(--rose-gold-primary);
    background-color: rgba(183, 110, 121, 0.08);
}

.navbar-custom .nav-link.nav-cta {
    background: var(--rose-gold-gradient);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.navbar-custom .nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
    background: linear-gradient(135deg, #9A5A64 0%, #B76E79 50%, #D4A5AD 100%);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23B76E79' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--cream) 50%, var(--beige-warm) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(183, 110, 121, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--rose-gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--rose-gold-primary);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile Hero Visual - Decorative Element */
.hero-mobile-visual {
    display: none;
}

.hero-mobile-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* ========================================
    BUTTONS
    ======================================== */

.btn-custom {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom {
    background: var(--rose-gold-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.45);
    color: white;
    background: linear-gradient(135deg, #9A5A64 0%, #B76E79 50%, #D4A5AD 100%);
}

.btn-outline-custom {
    background: transparent;
    color: var(--rose-gold-primary);
    border: 2px solid var(--rose-gold-primary);
}

.btn-outline-custom:hover {
    background: var(--rose-gold-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.25);
}

/* ========================================
   SECTION STYLES
   ======================================== */

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

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rose-gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--rose-gold-primary);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--cream);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 165, 173, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(183, 110, 121, 0.15);
    position: relative;
    z-index: 2;
}

.about-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    bottom: 40px;
    border: 3px solid var(--rose-gold-primary);
    border-radius: 20px;
    z-index: 1;
}

.about-content {
    padding-left: 30px;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--rose-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.about-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.about-feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: linear-gradient(180deg, var(--beige-light) 0%, var(--cream) 100%);
    position: relative;
}

.services-section::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='%23B76E79' 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;
    pointer-events: none;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--rose-gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--rose-gold-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--rose-gold-gradient);
    color: white;
    transform: scale(1.1);
}

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

.service-card p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--rose-gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    gap: 10px;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
    background: var(--cream);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(183, 110, 121, 0.9) 0%, rgba(183, 110, 121, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    color: var(--champagne);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.portfolio-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.portfolio-link {
    color: white;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   INSTAGRAM GALLERY
   ======================================== */

.instagram-item {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.instagram-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(183, 110, 121, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.instagram-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.instagram-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.2);
}

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

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-warm) 100%);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.15);
}

.testimonial-quote {
    color: var(--rose-gold-primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--beige-primary);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--rose-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--rose-gold-primary);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, var(--beige-warm) 0%, var(--beige-light) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(183, 110, 121, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(183, 110, 121, 0.1);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: var(--rose-gold-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.contact-info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(183, 110, 121, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid var(--beige-dark);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-control:focus {
    border-color: var(--rose-gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(183, 110, 121, 0.15);
    background: white;
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-custom {
    background: linear-gradient(180deg, #3D3D3D 0%, #2D2D2D 100%);
    color: var(--beige-light);
    padding: 80px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    font-size: 2rem;
}

.footer-brand .brand-text {
    color: white;
    font-size: 1.6rem;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--rose-gold-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--rose-gold-primary);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--rose-gold-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--rose-gold-primary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-light);
}

.footer-contact a:hover {
    color: var(--rose-gold-primary);
}

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

.copyright {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--rose-gold-primary);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--rose-gold-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.5);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

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

@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    
    .about-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-feature {
        text-align: left;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-custom {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .footer-custom {
        padding-top: 60px;
    }
    
    .footer-heading {
        margin-top: 30px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Mobile Hero Visual Styles */
    .hero-mobile-visual {
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-mobile-svg {
        max-width: 280px;
        height: auto;
        margin: 0 auto;
    }
    
    /* Improved mobile navigation touch targets */
    .navbar-custom .nav-link {
        padding: 12px 20px !important;
        margin: 4px 0;
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    /* Mobile portfolio improvements */
    .portfolio-item {
        margin-bottom: 24px;
    }
    
    .portfolio-image {
        height: 300px;
    }
    
    /* Enhanced mobile section spacing */
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    /* Mobile hero section optimization */
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 15px;
        justify-content: center;
    }
    
    .hero-buttons .btn-custom {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile testimonials improvements */
    .testimonial-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Mobile service cards with side margins */
    .service-card {
        padding: 35px 25px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    /* Service link touch targets */
    .service-link {
        padding: 8px 12px;
        margin: -8px -12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Mobile contact cards with side margins */
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    /* Space between contact cards on mobile */
    .contact-section .col-lg-5 {
        margin-bottom: 20px;
    }
    
    /* Templates section button margin */
    .services-section .about-content .btn-custom {
        margin-bottom: 30px;
    }
    
    /* Better button touch targets on mobile */
    .btn-custom {
        min-height: 48px;
        padding: 14px 32px;
    }
    
    .hero-buttons {
        padding: 0 15px;
    }
    
    /* Portfolio section CTA buttons */
    .portfolio-section .text-center.mt-5 {
        padding: 0 15px;
    }
    
    .portfolio-section .text-center.mt-5 .btn {
        display: inline-block;
        margin: 0 8px 12px 8px;
    }
    
    /* Footer social links spacing */
    .social-links {
        gap: 16px;
        padding: 0 10px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    /* Instagram grid mobile optimization */
    .instagram-image {
        height: 200px;
    }
    
    .col-6 .instagram-image {
        height: 160px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2.5px;
    }
    
    .section-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    
    .section-label {
        font-size: 0.85rem;
        letter-spacing: 2.5px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        font-size: 1.4rem;
    }
    
    /* Extra small mobile optimizations */
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        padding-top: 90px;
        padding-bottom: 50px;
    }
    
    .hero-mobile-svg {
        max-width: 240px;
    }
    
    /* Touch-friendly buttons */
    .btn-custom {
        padding: 14px 24px;
        min-height: 50px;
        font-size: 0.85rem;
    }
    
    /* Service cards on very small screens */
    .service-card {
        padding: 30px 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* Service link touch targets on small screens */
    .service-link {
        padding: 10px 14px;
        margin: -10px -14px;
        min-height: 48px;
    }
    
    /* Contact cards on very small screens */
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-left: 10px;
        margin-right: 10px;
        padding: 25px 20px;
    }
    
    /* Hero buttons spacing */
    .hero-buttons {
        padding: 0 10px;
    }
    
    /* Portfolio items on small screens */
    .portfolio-item {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* Portfolio section buttons spacing */
    .portfolio-section .text-center.mt-5 {
        padding: 0 15px;
    }
    
    .portfolio-section .text-center.mt-5 .btn-custom {
        margin: 0 5px 10px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Portfolio mobile touch improvements */
    .portfolio-image {
        height: 280px;
    }
    
    .portfolio-overlay {
        padding: 25px;
    }
    
    .portfolio-title {
        font-size: 1.3rem;
    }
    
    .portfolio-description {
        font-size: 0.9rem;
    }
    
    /* Form improvements */
    .form-control {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Contact section */
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    /* Footer mobile */
    .footer-custom {
        padding-top: 50px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */

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

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

/* ========================================
   SHIMMER ANIMATION
   ======================================== */

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes iconShimmer {
    0% {
        filter: brightness(1) drop-shadow(0 0 0 rgba(183, 110, 121, 0));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 8px rgba(183, 110, 121, 0.6));
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 0 rgba(183, 110, 121, 0));
    }
}

/* Shimmer effect for navbar brand icon - matches text shimmer */
.brand-icon i {
    background: linear-gradient(
        90deg,
        var(--rose-gold-primary) 0%,
        var(--rose-gold-light) 25%,
        #F7E7CE 50%,
        var(--rose-gold-light) 75%,
        var(--rose-gold-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    animation-delay: 1s;
}

/* Shimmer effect for highlighted words in titles */
.hero-title span,
.section-title span {
    background: linear-gradient(
        90deg,
        var(--rose-gold-primary) 0%,
        var(--rose-gold-light) 25%,
        #F7E7CE 50%,
        var(--rose-gold-light) 75%,
        var(--rose-gold-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Slightly different timing for variety */
.section-title span {
    animation-delay: 0.5s;
}

/* Pause shimmer on hover for better readability */
.hero-title span:hover,
.section-title span:hover {
    animation-play-state: paused;
    -webkit-text-fill-color: var(--rose-gold-primary);
    background: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-rose-gold {
    color: var(--rose-gold-primary) !important;
}

.bg-rose-gold {
    background: var(--rose-gold-gradient) !important;
}

.bg-beige {
    background: var(--beige-light) !important;
}

.bg-cream {
    background: var(--cream) !important;
}
