/* ========================================
   Lala's Beauty Salon — Custom Styles
   ======================================== */

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

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

body {
    overflow-x: hidden;
    background: #FFF8F0;
}

/* ---- Utility ---- */
.text-gradient {
    background: linear-gradient(135deg, #7B1E3F 0%, #D4943B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4943B;
    background: rgba(212, 148, 59, 0.1);
    border: 1px solid rgba(212, 148, 59, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #3D0A1A;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #7B1E3F;
    opacity: 0.75;
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #7B1E3F 0%, #9D174D 100%);
    color: #fff;
    border-color: #7B1E3F;
    box-shadow: 0 4px 20px rgba(123, 30, 63, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 30, 63, 0.45);
    background: linear-gradient(135deg, #9D174D 0%, #7B1E3F 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #7B1E3F;
    border-color: rgba(123, 30, 63, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #fff;
    border-color: #7B1E3F;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: #fff;
    color: #7B1E3F;
    border-color: #fff;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

.btn-text {
    background: none;
    border: none;
    color: #7B1E3F;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ---- Navigation ---- */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 30, 63, 0.08);
    box-shadow: 0 2px 20px rgba(123, 30, 63, 0.06);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.nav-scrolled.scrolled {
    background: rgba(255, 248, 240, 0.98);
    box-shadow: 0 4px 30px rgba(123, 30, 63, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
}

.nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3D0A1A;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7B1E3F;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(123, 30, 63, 0.08);
    color: #3D0A1A;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #7B1E3F 0%, #9D174D 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(123, 30, 63, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: #7B1E3F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3D0A1A;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(123, 30, 63, 0.08);
    color: #7B1E3F;
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7B1E3F 0%, #9D174D 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FFF8F0 0%, #FDF2F9 40%, #FFF3E0 100%);
    padding: 100px 24px 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: #F9A8D4;
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: #FFB74D;
    bottom: -50px;
    left: -100px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    background: #FBCFE8;
    top: 40%;
    left: 35%;
    animation: blobFloat 6s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 148, 59, 0.12);
    border: 1px solid rgba(212, 148, 59, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #C47F17;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #3D0A1A;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7B1E3F;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-main-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(123, 30, 63, 0.2), 0 8px 30px rgba(123, 30, 63, 0.15);
}

.hero-main-img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

.hero-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #7B1E3F;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-card-badge svg {
    width: 16px;
    height: 16px;
    color: #D4943B;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(123, 30, 63, 0.12), 0 2px 8px rgba(123, 30, 63, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.floating-card-1 {
    top: 15%;
    left: -30px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 25%;
    right: -20px;
    animation: floatCard 5s ease-in-out infinite reverse;
}

.floating-card-3 {
    bottom: 5%;
    left: 10%;
    animation: floatCard 4.5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #7B1E3F 0%, #9D174D 100%);
    flex-shrink: 0;
}

.floating-card-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.floating-card-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #3D0A1A;
    line-height: 1;
}

.floating-card-label {
    display: block;
    font-size: 0.72rem;
    color: #7B1E3F;
    opacity: 0.7;
    font-weight: 600;
    line-height: 1.3;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7B1E3F;
    opacity: 0.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-indicator svg {
    width: 16px;
    height: 16px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 1; }
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #FFF8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 30, 63, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(123, 30, 63, 0.12);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #D4943B 0%, #E8A84C 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
}

.service-card-body {
    padding: 24px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(123, 30, 63, 0.1) 0%, rgba(212, 148, 59, 0.1) 100%);
    margin-bottom: 16px;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    color: #7B1E3F;
}

.service-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3D0A1A;
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #7B1E3F;
    opacity: 0.75;
}

/* ---- About ---- */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF8F0 0%, #FDF2F9 100%);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(123, 30, 63, 0.15);
}

.about-img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #FFF8F0;
    box-shadow: 0 15px 50px rgba(123, 30, 63, 0.15);
}

.about-img-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7B1E3F 0%, #9D174D 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(123, 30, 63, 0.3);
    z-index: 2;
}

.about-exp-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4943B;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #7B1E3F;
    opacity: 0.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(123, 30, 63, 0.1) 0%, rgba(212, 148, 59, 0.1) 100%);
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
    color: #7B1E3F;
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    color: #3D0A1A;
    margin-bottom: 2px;
}

.about-feature-desc {
    font-size: 0.85rem;
    color: #7B1E3F;
    opacity: 0.65;
}

/* ---- Gallery ---- */
.gallery {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: auto;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 30, 63, 0.7) 0%, rgba(212, 148, 59, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.gallery-item-overlay svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

/* ---- Testimonials ---- */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(160deg, #FDF2F9 0%, #FFF8F0 50%, #FFF3E0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(123, 30, 63, 0.1);
    background: #fff;
}

.testimonial-card-quote {
    margin-bottom: 20px;
}

.testimonial-card-quote svg {
    width: 40px;
    height: 40px;
    color: #D4943B;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #7B1E3F;
    opacity: 0.85;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B1E3F 0%, #D4943B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author-avatar svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.testimonial-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #3D0A1A;
}

.testimonial-author-location {
    display: block;
    font-size: 0.78rem;
    color: #7B1E3F;
    opacity: 0.6;
}

/* ---- CTA ---- */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3D0A1A 0%, #7B1E3F 50%, #5C122B 100%);
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 148, 59, 0.2);
    top: -200px;
    right: -100px;
}

.cta-blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(249, 168, 212, 0.15);
    bottom: -150px;
    left: -50px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---- Contact ---- */
.contact {
    padding: 100px 0;
    background: #fff;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #FFF8F0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #FDF2F9;
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #7B1E3F 0%, #9D174D 100%);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3D0A1A;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: #7B1E3F;
    opacity: 0.8;
    line-height: 1.6;
}

.contact-info-card a {
    color: #7B1E3F;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(123, 30, 63, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: #FFF8F0;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(123, 30, 63, 0.06);
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3D0A1A;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #3D0A1A;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(123, 30, 63, 0.12);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #3D0A1A;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7B1E3F;
    opacity: 0.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B1E3F;
    box-shadow: 0 0 0 4px rgba(123, 30, 63, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123, 30, 63, 0.1) 0%, rgba(212, 148, 59, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
    color: #7B1E3F;
}

.form-success h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3D0A1A;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: #7B1E3F;
    opacity: 0.75;
    margin-bottom: 20px;
}

/* ---- Footer ---- */
.footer {
    padding: 60px 0 0;
    background: #2A0713;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
}

.footer-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    opacity: 0.65;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    opacity: 0.55;
}

.footer-bottom a {
    color: #D4943B;
    text-decoration: none;
}

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

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

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .floating-card-1 {
        left: 0;
    }

    .floating-card-2 {
        right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .floating-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
