/* ===================================================
   THE PINK LADIES - Professional Cleaning Services
   Main Stylesheet
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --pink-primary: #E91E8C;
    --pink-dark: #C4177A;
    --pink-darker: #9B1261;
    --pink-light: #F472B6;
    --pink-lighter: #FDF2F8;
    --pink-bg: #FFF0F7;
    --white: #FFFFFF;
    --dark: #1E1E2F;
    --dark-light: #2D2D44;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --success: #10B981;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--pink-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--pink-primary);
    color: var(--white);
    border-color: var(--pink-primary);
}

.btn-primary:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--pink-primary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--pink-primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

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

.header.scrolled .header-inner {
    height: 70px;
}

.header.scrolled .logo-img {
    height: 65px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 160px;
    transition: height 0.4s ease;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.logo-the {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-pink {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--pink-primary);
    letter-spacing: 1px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.nav-link {
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--pink-primary);
    background: var(--pink-lighter);
}

.nav-phone {
    padding: 10px 20px;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 8px;
}

.nav-phone:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.header-phone-btn {
    display: none;
    padding: 8px 16px;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

.header-phone-btn:hover {
    color: var(--white);
}

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

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1E1E2F 0%, #2D2D44 40%, #4a1942 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(233, 30, 140, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    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='%23E91E8C' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title-strong {
    display: block;
    color: var(--white);
}

.hero-title-spotless {
    display: block;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-guarantee i {
    color: var(--pink-light);
    font-size: 1.1rem;
}

/* ---------- Sections General ---------- */
.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- About Section ---------- */
.about {
    background: var(--white);
}

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

.about-text .about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

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

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

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--pink-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-primary);
    font-size: 1.2rem;
}

.about-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--pink-primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-badge-days {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
}

.about-badge-sub {
    display: block;
    font-size: 0.75rem;
    opacity: 0.85;
}

/* ---------- Services Section ---------- */
.services {
    background: var(--gray-50);
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--pink-lighter);
}

.service-card.featured {
    border-color: var(--pink-primary);
    box-shadow: var(--shadow-lg);
}

.service-card.featured:hover {
    border-color: var(--pink-primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pink-lighter), var(--pink-bg));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--pink-primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.service-list li i {
    color: var(--pink-primary);
    font-size: 0.8rem;
}

/* ---------- Why Us Section ---------- */
.why-us {
    background: var(--white);
}

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

.why-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);
    border-color: var(--pink-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--pink-lighter);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card:hover .why-number {
    color: var(--pink-light);
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.why-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.why-benefits span i {
    color: var(--pink-primary);
    font-size: 0.7rem;
}

/* ---------- Guarantee Banner ---------- */
.guarantee-banner {
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    padding: 60px 0;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.guarantee-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 500px;
}

/* ---------- Quote Section ---------- */
.quote-section {
    background: var(--gray-50);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quote-info {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 48px 36px;
    color: var(--white);
}

.quote-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.quote-info > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.quote-contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.quote-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.quote-contact-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(233, 30, 140, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-light);
    font-size: 0.9rem;
}

.quote-contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.quote-contact-item a,
.quote-contact-item span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.quote-contact-item a:hover {
    color: var(--pink-light);
}

.quote-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
    color: var(--success);
    font-size: 0.9rem;
}

/* ---------- Quote Form ---------- */
.quote-form {
    padding: 48px 40px;
}

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

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.required {
    color: var(--pink-primary);
}

.optional {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition);
    background: var(--white);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8.825L0.575 3.4l1.05-1.05L6 6.725l4.375-4.375 1.05 1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-submit {
    margin-top: 8px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-message.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    line-height: 1.1;
}

.footer-logo .logo-the {
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo .logo-pink {
    color: var(--pink-light);
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.4);
}

.footer-brand > p:first-of-type {
    font-family: var(--font-heading);
    font-weight: 600;
    font-style: italic;
    color: var(--pink-light);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a,
.footer-services a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--pink-light);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--pink-light);
    width: 16px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--pink-light);
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
}

.back-to-top:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 40px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        gap: 4px;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-phone {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        padding: 14px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-phone-btn {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        padding: 140px 0 100px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .guarantee-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .quote-form {
        padding: 32px 24px;
    }

    .quote-info {
        padding: 36px 24px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .hero-guarantee {
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .about-badge {
        right: 10px;
        bottom: -15px;
        padding: 12px 18px;
    }

    .about-badge-days {
        font-size: 1.1rem;
    }
}

/* ---------- Logo Image in Header ---------- */
.logo-img {
    height: 155px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

/* ---------- Hero Guarantee - Prominent Style ---------- */
.hero-guarantee-prominent {
    background: rgba(233, 30, 140, 0.2);
    border: 2px solid rgba(233, 30, 140, 0.4);
    border-radius: 16px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-guarantee-prominent i {
    font-size: 1.5rem;
    color: var(--pink-light);
}

.hero-guarantee-prominent strong {
    color: var(--white);
    font-weight: 800;
}

/* ---------- Footer Social Icons ---------- */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Footer T&Cs ---------- */
.footer-tcs {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.footer-tcs a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.footer-tcs a:hover {
    color: var(--pink-light);
}

/* ---------- Gallery & Blogs Section ---------- */
.gallery-section {
    background: var(--white);
}

.gallery-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: var(--gray-50);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    max-width: 650px;
    margin: 0 auto;
}

.gallery-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--pink-lighter), var(--pink-bg));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pink-primary);
}

.gallery-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.gallery-placeholder > p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-social-cta p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.gallery-social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.gallery-social-links a:hover {
    border-color: var(--pink-primary);
    color: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.15);
}

.gallery-social-links a i {
    font-size: 1.1rem;
}

/* ---------- Gallery Sub-heading ---------- */
.gallery-sub-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-sub-heading i {
    color: var(--pink-primary);
}

#staffContainer,
#galleryContainer {
    margin-bottom: 50px;
}

/* ---------- Staff Cards ---------- */
.staff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.staff-card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.staff-card:hover .staff-card-img img {
    transform: scale(1.05);
}

.staff-card-body {
    padding: 20px;
}

.staff-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.staff-card-role {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink-primary);
    margin-bottom: 10px;
}

.staff-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---------- Gallery Image Grid ---------- */
.gallery-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.05);
}

.gallery-card-caption {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 16px;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 1;
}

.lightbox-close:hover {
    background: var(--pink-primary);
    color: var(--white);
}

/* ---------- Booking Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.97);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    background: var(--pink-lighter);
    color: var(--pink-primary);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.modal-form .form-row {
    margin-bottom: 16px;
}

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

.modal-form .form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    display: block;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus {
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.modal-form .form-group input::placeholder,
.modal-form .form-group textarea::placeholder {
    color: var(--gray-400);
}

.modal-form .form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8.825L0.575 3.4l1.05-1.05L6 6.725l4.375-4.375 1.05 1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.modal-form .form-submit {
    margin-top: 8px;
}

/* ---------- Additional Responsive for New Elements ---------- */
@media (max-width: 768px) {
    .header-inner {
        height: 120px;
    }

    .header.scrolled .header-inner {
        height: 60px;
    }

    .logo-img {
        height: 115px;
    }

    .header.scrolled .logo-img {
        height: 55px;
    }

    html {
        scroll-padding-top: 130px;
    }

    .modal {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

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

@media (max-width: 480px) {
    .header-inner {
        height: 100px;
    }

    .header.scrolled .header-inner {
        height: 55px;
    }

    .logo-img {
        height: 95px;
    }

    .header.scrolled .logo-img {
        height: 50px;
    }

    html {
        scroll-padding-top: 110px;
    }

    .hero-guarantee-prominent {
        font-size: 0.95rem;
        padding: 14px 22px;
    }

    .hero-guarantee-prominent i {
        font-size: 1.2rem;
    }
}
