{% if content %}
    <div class="container">
        <div class="row">
            <div class="col-md-8 col-md-offset-2">
                <div class="well {% if site['rtl'] %} rtl-content {% endif %}">
                    {{ content }}
                </div>
            </div>
        </div>
    </div>
{% endif %}
/* WhatsApp Floating Button CSS */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Ripple effect */
.whatsapp-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:active::after {
    width: 120px;
    height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }
}
.header .logo-image {
    max-height: 50px; /* Adjust as needed */
    width: auto;
    display: block; /* Helps with alignment */
    /* Add any other styling like margin, padding, etc. */
}
/* You might also need to adjust nav-brand or navbar styles */
.header .nav-brand {
    padding: 10px 0; /* Example: adjust padding around the logo */
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(222, 226, 230, 0.5);
    z-index: 1000;
    transition: var(--transition);
}

/* Adjust padding for the navbar container */
.header .navbar .container {
    padding-top: 10px;    /* Reduce this value to shrink top space */
    padding-bottom: 0px; /* Reduce this value to shrink bottom space */
    /* Keep horizontal padding (left/right) as needed, e.g., padding: 10px 20px; */
    display: flex; /* Ensure flexbox for alignment, if not already set */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space out items if they aren't already */
}

/* Ensure your logo image is constrained */
.header .logo-image {
    max-height: 60px; /* Adjust this value to make the logo smaller if it's too tall */
    width: auto;     /* Maintain aspect ratio */
    display: block;  /* Helps with alignment */
}

/* If your nav links have excessive padding, reduce it */
.header .nav-link {
    padding: 10px 0px; /* Example: adjust vertical padding */
    /* Other styles */
}

/* If nav-brand has extra padding, adjust it */
.header .nav-brand {
    /* You might remove or reduce padding here if it's contributing to height */
    padding: 0; 
}
/* --- Base Styles (Required for theme colors and fonts) --- */
:root {
    --primary-color: #e91e63;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --border-radius: 12px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.07);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #eef2f5; /* Light background for contrast */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- FAQ Section Styles --- */
.faq {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.gradient-text {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    background-color: var(--white);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-question::after { /* The icon */
    content: '\f067'; /* Font Awesome plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '\f068'; /* Font Awesome minus icon */
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust if answers are very long */
    transition: max-height 0.5s ease-in-out;
}
  
/* --- Base Styles & Variables --- */
:root {
    --primary-color: #e91e63;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --border-radius: 12px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5; /* A neutral background for the demo */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Styles --- */
.dynamic-services {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.gradient-text {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* --- Desktop Tab Styles (Default) --- */
.service-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-tab-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative; /* For the NEW badge */
}

.service-tab-trigger:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.service-tab-trigger.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

.tab-icon {
    font-size: 2.25rem;
    color: var(--gray-800);
}

.service-tab-trigger.active .tab-icon {
    color: var(--primary-color);
}

.tab-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 0.25rem 0;
}

.tab-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.tab-rating .fa-star {
    color: #ffc107;
}

.tab-rating span {
    background-color: var(--gray-100);
    padding: 0.1rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
}

/* --- Content Panels & Buttons --- */
.service-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    animation: fadeIn 0.4s ease;
}

.service-panel.active {
    display: grid;
}

.service-button {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.service-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    opacity: 0.95;
}

/* Button Gradients */
.service-button.gradient-orange { background: linear-gradient(to right, #f7971e, #ffd200); }
.service-button.gradient-blue { background: linear-gradient(to right, #00c6ff, #0072ff); }
.service-button.gradient-red { background: linear-gradient(to right, #ed213a, #93291e); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .service-tabs {
        gap: 1rem;
        justify-content: center;
        grid-template-columns: repeat(3, 1fr);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-tab-trigger {
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 0;
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
    
    .service-tab-trigger.active {
        border-width: 3px;
    }

    .tab-icon {
        font-size: 1.75rem;
    }

    /* Hide text details on mobile */
    .tab-details {
        display: none;
    }

    .new-badge {
        top: -2px;
        right: -2px;
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }

    .service-panel {
        grid-template-columns: 1fr;
    }
}