/* ============================================
   Alamal Clean Services - Professional Stylesheet
   ============================================ */

/* ===== Root Variables ===== */
:root {
    /* Primary Colors - Professional Feminine Palette */
    --primary-pink: #d946a6;
    --primary-rose: #e879b9;
    --secondary-pink: #9f1a6e;
    --light-pink: #fdf2f8;
    --accent-rose: #ec4899;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d946a6 0%, #e879b9 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    --gradient-light: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);

    /* Spacing */
    --container-max-width: 1280px;
    --container-padding: 2rem;

    /* Typography */
    --font-family: 'Tajawal', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-pink: 0 10px 30px rgba(217, 70, 166, 0.2);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 20px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(217, 70, 166, 0.06);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-pink);
    color: var(--gray-800);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: var(--primary-pink);
    color: var(--white);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Link Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(217, 70, 166, 0.3);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-rose);
}

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

/* Service Action Buttons */
.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-call:hover::before {
    left: 100%;
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}

.btn-call:hover i {
    animation: phoneRing 0.5s ease-in-out;
}

.btn-call:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-sm-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-sm-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-sm-whatsapp:hover::before {
    left: 100%;
}

.btn-sm-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-sm-whatsapp:hover i {
    animation: whatsappBounce 0.6s ease-in-out;
}

.btn-sm-whatsapp:active {
    transform: translateY(-1px) scale(1.02);
}

/* ===== Navbar Styles ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 70, 166, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.navbar-link {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--primary-pink);
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Language Switcher Button */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-rose));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(217, 70, 166, 0.25);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.35);
}

.language-switcher i {
    font-size: 1.1rem;
}

.language-switcher .lang-text {
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-pink);
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--gray-700);
    font-weight: 600;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: var(--light-pink);
    color: var(--primary-pink);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-rose));
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-switcher:hover {
    background: linear-gradient(135deg, var(--primary-rose), var(--secondary-pink));
}

.mobile-lang-switcher i {
    font-size: 1.2rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgb(253 242 248 / 71%) 0%, rgb(252 231 243) 50%, rgb(251 207 232 / 70%) 100%), url(https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1920&h=1080&fit=crop&q=80);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(217, 70, 166, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-rose);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(217, 70, 166, 0.15);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(217, 70, 166, 0.2));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
}

/* ===== Section Styles ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-bg-white {
    background: var(--white);
}

.section-bg-light {
    background: var(--light-pink);
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Card Styles ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 70, 166, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(217, 70, 166, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.card-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    text-align: center;
    border-bottom: 4px solid var(--primary-pink);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--light-pink);
    border-radius: 0 0 0 100%;
    opacity: 0.5;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scale(1.5);
    opacity: 0.3;
}

.service-card:nth-child(even) {
    border-bottom-color: var(--accent-rose);
}

.service-icon {
    background: var(--light-pink);
    color: var(--primary-pink);
}

.service-card:hover .service-icon {
    background: var(--primary-pink);
    color: var(--white);
}

/* Info Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    gap: 1.5rem;
    background: rgba(217, 70, 166, 0.05);
    border: 1px solid rgba(217, 70, 166, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(217, 70, 166, 0.08);
    transform: translateX(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-pink);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.info-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.info-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== Grid Layouts ===== */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

/* ===== Contact Section ===== */
.contact-section {
    background: linear-gradient(135deg, #d946a6 0%, #ec4899 50%, #f472b6 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23fff'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(217, 70, 166, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-card:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
    transition: var(--transition);
}

.contact-card:hover .contact-icon-box {
    transform: rotate(-3deg) scale(1.1);
}

.whatsapp-cta {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(22, 163, 74, 0.03) 100%);
    border: 0;
    border-radius: 2rem;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.08);
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.whatsapp-icon-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.whatsapp-icon-glow {
    position: absolute;
    inset: -20px;
    background: #22c55e;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: pulse 3s ease-in-out infinite;
}

.whatsapp-icon {
    font-size: 6rem;
    color: #22c55e;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 8px 20px rgba(34, 197, 94, 0.4));
    animation: float 3s ease-in-out infinite;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: auto;
    min-width: 320px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 3.5rem;
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.35);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.45);
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0;
    text-align: center;
    border-top: 4px solid var(--primary-pink);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    color: #fda4af;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Blog Styles ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 166, 0.06);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(217, 70, 166, 0.12);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.blog-title:hover {
    color: var(--primary-pink);
}

.blog-excerpt {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--primary-pink);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

/* ===== Animations ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

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

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

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2) rotate(-5deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }

    75% {
        transform: scale(1.15) rotate(-3deg);
    }
}

/* Shiny Button Effect */
.shiny-btn {
    position: relative;
    overflow: hidden;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg) translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.shiny-btn:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

/* Grid Utility */
.grid-gap-lg {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

/* Position Utility */
.relative {
    position: relative;
}

/* Section Header Variations */
.section-header-right {
    text-align: right;
    margin-bottom: 4rem;
}

.section-divider-small {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem 0 1.5rem;
    border-radius: var(--radius-full);
}

/* About Section Styles */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(217, 70, 166, 0.2);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Mission & Vision Styles */
.mission-vision-card {
    padding: 3rem;
    text-align: center;
}

.mission-vision-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--light-pink);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-vision-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.mission-vision-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* CTA Content Styles */
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Variations */
.btn-outline-white {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Icon Sizes */
.icon-lg {
    font-size: 1.5rem;
}

.icon-xl {
    font-size: 2rem;
}

.icon-2xl {
    font-size: 2.5rem;
}

.icon-3xl {
    font-size: 3rem;
}

.icon-4xl {
    font-size: 3.5rem;
}

/* Services Page Styles */
.service-detail-card {
    text-align: right;
    padding: 3rem;
}

.service-icon-top {
    margin: 0 0 2rem 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(217, 70, 166, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-list-item i {
    flex-shrink: 0;
}

.service-list-item .fa-check-circle {
    font-size: 1.125rem;
}

.service-icon-check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.service-note {
    background: rgba(217, 70, 166, 0.05);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--primary-pink);
    font-weight: 700;
    color: var(--primary-pink);
}

/* How It Works Cards */
.step-card {
    text-align: center;
    padding: 2.5rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-600);
}

/* Service Icon Colors */
.icon-color-primary {
    color: var(--primary-pink);
}

.icon-color-accent {
    color: var(--accent-rose);
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* Policy Page Styles */
.policy-card {
    padding: 3rem;
}

.policy-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.policy-warning-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--accent-rose);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.policy-notes-list {
    list-style: none;
    padding: 0;
}

.policy-notes-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(217, 70, 166, 0.1);
    display: flex;
    gap: 1rem;
}

.policy-notes-icon {
    color: var(--primary-pink);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.policy-notes-text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
}

.policy-notes-card {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    padding: 2.5rem;
}

.policy-warning-card {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-right: 4px solid #ef4444;
}

.policy-warning-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #dc2626;
    font-weight: 800;
}

.policy-warning-text {
    margin: 0;
    color: #7f1d1d;
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Contact Page Styles */
.contact-info-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 700;
}

.contact-info-text {
    font-size: 1.125rem;
    color: var(--gray-700);
}

.contact-info-subtext {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.contact-info-link {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.25rem;
}

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

.contact-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(217, 70, 166, 0.2);
}

.contact-feature-card {
    text-align: center;
    padding: 2.5rem;
}

.contact-feature-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.contact-feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-feature-description {
    color: var(--gray-600);
}

.contact-notice-card {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-right: 4px solid #f59e0b;
}

.contact-notice-icon {
    color: #d97706;
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-notice-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #92400e;
    font-weight: 800;
}

.contact-notice-text {
    margin: 0;
    color: #78350f;
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Blog Page Styles */
.blog-newsletter-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-pink) 0%, #fce7f3 100%);
}

.blog-newsletter-icon {
    font-size: 3.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.blog-newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.blog-newsletter-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.blog-newsletter-note {
    color: var(--gray-500);
    font-style: italic;
}

.blog-more-text {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.blog-heart-icon {
    color: var(--primary-pink);
}

/* Max Width Container */
.container-narrow {
    max-width: 900px;
}

.container-medium {
    max-width: 1000px;
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-1 {
    gap: 1rem;
}

.gap-15 {
    gap: 1.5rem;
}

.gap-2 {
    gap: 2rem;
}

.items-start {
    align-items: flex-start;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Hero Variations */
.hero-short {
    min-height: 70vh;
    background-image: linear-gradient(135deg, rgb(253 242 248 / 71%) 0%, rgb(252 231 243) 50%, rgb(251 207 232 / 70%) 100%),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

/* ===== Service Detail Page ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgb(174 76 136);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgb(174 76 136);
}

.breadcrumb span:last-child {
    color: var(--gray-700);
    font-weight: 600;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.service-detail-main {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(217, 70, 166, 0.06);
}

.service-detail-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: -3rem -3rem 3rem -3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.service-detail-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(217, 70, 166, 0.35);
    backdrop-filter: blur(5px);
}

.service-detail-content {
    line-height: 1.8;
}

.service-detail-content .section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.service-detail-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.service-detail-content .section-subtitle {
    position: relative;
    padding-right: 1.5rem;
    color: var(--gray-900);
    font-size: 1.4rem;
    margin-top: 3rem;
}

.service-detail-content .section-subtitle::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.text-lg {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.alert {
    padding: 2rem;
    border-radius: var(--radius-xl);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
}

.alert-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    color: var(--gray-800);
}

.alert i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.alert strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.alert p {
    margin: 0;
    line-height: 1.7;
}

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

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 2px solid rgba(217, 70, 166, 0.08);
    box-shadow: var(--shadow-card);
}

.feature-item:hover {
    background: var(--light-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-pink);
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
}

.feature-text h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.15rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(217, 70, 166, 0.08);
}

.service-benefits-list li {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(217, 70, 166, 0.1);
}

.service-benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-benefits-list li:first-child {
    padding-top: 0;
}

.service-benefits-list i {
    color: var(--primary-pink);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.service-benefits-list span {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.process-steps {
    display: grid;
    gap: 2rem;
    counter-reset: step-counter;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 2px solid rgba(217, 70, 166, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-card-hover);
    transform: translateX(-5px);
}

.process-step:hover::before {
    opacity: 0.08;
    transform: scale(1.2);
}

.step-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(217, 70, 166, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-container {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    border: 2px solid rgba(217, 70, 166, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    background: var(--white);
}

.faq-item:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--light-pink) 0%, rgba(253, 242, 248, 0.5) 100%);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-900);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-pink);
}

.faq-question i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.faq-answer {
    padding: 1.5rem 2rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    background: var(--white);
}

/* Sidebar Styles */
.service-detail-sidebar,
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(217, 70, 166, 0.08);
    transition: var(--transition);
}

.sidebar-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(217, 70, 166, 0.15);
}

.sidebar-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border-color: transparent;
}

.sidebar-cta:hover {
    box-shadow: 0 10px 35px rgba(217, 70, 166, 0.35);
    transform: translateY(-3px);
}

.sidebar-cta .sidebar-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 3rem;
    animation: pulse 3s ease-in-out infinite;
}

.sidebar-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-title {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    color: var(--gray-900);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-pink);
    font-weight: 800;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-rose);
}

.sidebar-info-list {
    list-style: none;
    padding: 0;
}

.sidebar-info-list li {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(217, 70, 166, 0.1);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.sidebar-info-list li:hover {
    background: var(--light-pink);
    transform: translateX(-3px);
}

.sidebar-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-info-list i {
    color: var(--primary-pink);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-info-list strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.sidebar-info-list span {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.related-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-service-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-800);
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 600;
}

.related-service-item:hover {
    background: var(--light-pink);
    transform: translateX(-8px);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-card);
}

.related-service-item i {
    color: var(--primary-pink);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ===== Blog Detail Page ===== */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.blog-detail-main {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(217, 70, 166, 0.06);
}

.blog-detail-header {
    margin-bottom: 3rem;
}

.blog-detail-title {
    font-size: 2.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-weight: 800;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(217, 70, 166, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 1rem;
}

.meta-item i {
    color: var(--primary-pink);
    font-size: 1.15rem;
}

.blog-detail-image {
    margin: -3rem -3rem 3rem -3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.blog-detail-content {
    line-height: 1.9;
    color: var(--gray-700);
    font-size: 1.1rem;
}

.blog-detail-content .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--light-pink) 0%, rgba(253, 242, 248, 0.5) 100%);
    border-right: 5px solid var(--primary-pink);
    border-radius: var(--radius-xl);
    font-weight: 500;
}

.blog-detail-content h2 {
    font-size: 2.1rem;
    margin: 3.5rem 0 1.5rem;
    color: var(--gray-900);
    font-weight: 800;
    padding-right: 1.5rem;
    border-right: 5px solid var(--primary-pink);
}

.blog-detail-content h3 {
    font-size: 1.65rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--gray-900);
    font-weight: 700;
    position: relative;
    padding-right: 1.25rem;
}

.blog-detail-content h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.blog-detail-content p {
    margin-bottom: 1.75rem;
    line-height: 1.9;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.blog-detail-content li {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.blog-detail-content ul li::marker {
    color: var(--primary-pink);
    font-size: 1.3rem;
}

.blog-detail-content strong {
    color: var(--gray-900);
    font-weight: 700;
}

.blog-detail-content a {
    color: var(--primary-pink);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.blog-detail-content a:hover {
    border-bottom-color: var(--primary-pink);
}

.callout {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin: 3rem 0;
    box-shadow: var(--shadow-card);
}

.callout-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-right: 5px solid #3b82f6;
}

.callout-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
    border-right: 5px solid #f59e0b;
}

.callout-icon {
    flex-shrink: 0;
}

.callout-icon i {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.callout-info .callout-icon i {
    color: #3b82f6;
}

.callout-warning .callout-icon i {
    color: #f59e0b;
}

.callout-content strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.callout-content p {
    line-height: 1.8;
    color: var(--gray-700);
}

.checklist {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.checklist-item.checked i {
    color: #22c55e;
    font-size: 1.25rem;
}

.steps-timeline {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    padding: 1rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.timeline-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-pink);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 166, 0.08);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(217, 70, 166, 0.15);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
}

.feature-box h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

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

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 0;
    border-top: 2px solid rgba(217, 70, 166, 0.1);
    border-bottom: 2px solid rgba(217, 70, 166, 0.1);
    margin: 3rem 0;
}

.tag-label {
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.tag {
    padding: 0.75rem 1.5rem;
    background: var(--light-pink);
    color: var(--primary-pink);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tag:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 70, 166, 0.3);
    border-color: var(--primary-pink);
}

.blog-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem 0;
    border-top: 2px solid rgba(217, 70, 166, 0.1);
    border-bottom: 2px solid rgba(217, 70, 166, 0.1);
}

.share-label {
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 1.25rem;
}

.share-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 1.5rem;
    box-shadow: var(--shadow-card);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.author-box {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--light-pink) 0%, rgba(253, 242, 248, 0.5) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    border: 2px solid rgba(217, 70, 166, 0.15);
    box-shadow: var(--shadow-card);
}

.author-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.5rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.2);
}

.author-info h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.3rem;
    font-weight: 700;
}

.author-info p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid rgba(217, 70, 166, 0.15);
}

.related-posts h3 {
    margin-bottom: 2.5rem;
    color: var(--gray-900);
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-right: 1.5rem;
}

.related-posts h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.blog-card-small {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid rgba(217, 70, 166, 0.08);
}

.blog-card-small:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-pink);
}

.blog-card-small img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.read-more-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more-link:hover {
    gap: 0.75rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.popular-post-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.popular-post-item:hover {
    background: var(--light-pink);
    transform: translateX(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-pink);
}

.popular-post-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 3px 12px rgba(217, 70, 166, 0.3);
}

.popular-post-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.4;
}

.popular-post-content span {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-post-content span i {
    color: var(--primary-pink);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 1rem;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: var(--transition);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: 2px solid transparent;
}

.category-list a:hover {
    background: var(--light-pink);
    transform: translateX(-5px);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-card);
    color: var(--gray-900);
}

.category-list .category-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-list i {
    color: var(--primary-pink);
    font-size: 1.25rem;
}

.category-list .count {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(217, 70, 166, 0.3);
}

.sidebar-newsletter {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border-color: transparent;
}

.sidebar-newsletter:hover {
    box-shadow: 0 10px 35px rgba(217, 70, 166, 0.35);
    transform: translateY(-3px);
}

.newsletter-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2.5rem;
    animation: pulse 3s ease-in-out infinite;
}

.sidebar-newsletter h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.sidebar-newsletter p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary-pink);
}

.newsletter-form button:hover {
    background: var(--gray-100);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }

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

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    /* Navbar Mobile */
    .navbar-menu {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .language-switcher {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hero Mobile */
    .hero {
        min-height: 90vh;
        padding-top: 5rem;
        background-attachment: scroll;
    }

    .hero-short {
        background-attachment: scroll;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Section Mobile */
    .section {
        padding: 4rem 0;
    }

    /* Grid Mobile */
    .grid {
        gap: 1.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Info Card Mobile */
    .info-card {
        flex-direction: column;
        text-align: center;
    }

    /* Contact Mobile */
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    /* Service & Blog Detail Mobile */
    .service-detail-layout,
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-main,
    .blog-detail-main {
        padding: 2rem;
    }

    .service-detail-image-wrapper,
    .blog-detail-image {
        margin: -2rem -2rem 2rem -2rem;
    }

    .service-detail-sidebar,
    .blog-detail-sidebar {
        position: static;
    }

    .sidebar-card {
        padding: 2rem;
    }

    .blog-detail-title {
        font-size: 2.25rem;
    }

    .blog-detail-content h2 {
        font-size: 1.8rem;
    }

    .blog-detail-content h3 {
        font-size: 1.45rem;
    }

    .blog-detail-image img {
        height: 350px;
    }

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

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .card {
        padding: 1.5rem;
    }

    /* Detail Pages Mobile */
    .service-detail-main,
    .blog-detail-main {
        padding: 1.5rem;
    }

    .service-detail-image-wrapper,
    .blog-detail-image {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .blog-detail-title {
        font-size: 1.75rem;
    }

    .blog-detail-content {
        font-size: 1rem;
    }

    .blog-detail-content .lead {
        font-size: 1.15rem;
        padding: 1.5rem;
    }

    .blog-detail-content h2 {
        font-size: 1.5rem;
    }

    .blog-detail-content h3 {
        font-size: 1.25rem;
    }

    .service-detail-image {
        height: 250px;
    }

    .blog-detail-image img {
        height: 220px;
    }

    .alert,
    .callout {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 1rem 1.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}