/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-arabic: 'Noto Naskh Arabic', serif;
    --font-english: 'Poppins', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-english);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--light-color);

}

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

/* Header Styles */
.header {
    position: static;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
    flex-direction: column;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.owner-dp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.owner-name {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stylish-title {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff) !important;
    background-size: 400% 400% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.header-bottom {
    text-align: center;
    padding: 0.75rem 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
}

.bismillah-text {
    font-family: var(--font-arabic);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.header-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.header-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Bismillah Section */
.bismillah-section {
    padding: 150px 0 60px; /* Increased top padding */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bismillah-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.bismillah-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.whatsapp-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.whatsapp-channel-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Social Media Services Section */
.social-media-services {
    padding: 60px 0;
    background: var(--white);
}

.social-media-content {
    text-align: center;
}

.social-media-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.social-media-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
}

.social-icon span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-content {
    text-align: left;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 3rem;
    text-align: left;
}

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

.trust-item {
    text-align: left;
    padding: 2rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--gray-600);
}

/* Search Section */
.search-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.search-content {
    text-align: left;
}

.search-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
    text-align: left;
}

.search-bar-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-bar {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1.1rem;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    color: var(--gray-800);
    outline: none;
    transition: all 0.3s ease;
}

.search-bar:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.1rem;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    text-align: left;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    height: 6px;
}

.service-card:hover::after {
    left: 100%;
}

.service-card.discount {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
    position: relative;
}

.service-card.discount::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.discount-badge {
    position: absolute;
    top: -5px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    /* animation: pulse-glow 2s infinite; */
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    }
}

.service-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    border-radius: 10px;
    object-fit: contain;
    background: var(--gray-100);
    padding: 8px;
    display: block;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-price .currency {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.service-price .original-price {
    font-size: 1.2rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 500;
}

.service-price .discount-price {
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-feature {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-feature.warranty {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.service-feature.discount {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    /* animation: pulse-feature 2s infinite; */
}

@keyframes pulse-feature {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.quantity-info {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: 0.5rem;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-primary {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-primary::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-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}

.btn-secondary:hover::before {
    width: 100%;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    background: var(--gray-50);
    padding: 0.5rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.quantity-controls:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quantity-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transition: width 0.3s ease;
    z-index: 0;
}

.quantity-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.quantity-btn:hover::before {
    width: 100%;
}

.quantity-btn:hover span {
    color: white;
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    font-weight: 700;
    color: var(--gray-800);
    min-width: 40px;
    text-align: center;
    font-size: 1.2rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid var(--gray-200);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--gray-800);
}

.order-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.payment-methods {
    margin: 2rem 0;
}

.payment-method {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.payment-method h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.payment-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.payment-number:hover {
    color: var(--secondary-color);
}

.payment-name {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-english);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Payment Popup */
.payment-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--success-color);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.payment-popup.show {
    transform: translateX(0);
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-content i {
    color: var(--success-color);
    font-size: 1.5rem;
}

.payment-content p {
    font-weight: 600;
    color: var(--gray-800);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 3rem;
}

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

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.review-info h4 {
    font-weight: 600;
    color: var(--gray-800);
}

.review-rating {
    color: #fbbf24;
    margin-top: 0.25rem;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-service {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo h3 {
    color: white;
    font-size: 1.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--gray-400);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-500);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1500;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

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

.whatsapp-btn:hover {
    background: #128c7e;
}

.channel-btn {
    background: var(--primary-color);
}

.channel-btn:hover {
    background: var(--secondary-color);
}

.bot-btn {
    background: var(--accent-color);
}

.bot-btn:hover {
    background: #059669;
}

/* Bot Chat */
.bot-chat {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.bot-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bot-header h4 {
    font-weight: 600;
}

.bot-close {
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 300;
}

.bot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message,
.user-message {
    padding: 0.75rem 1rem;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message {
    background: var(--gray-100);
    color: var(--gray-800);
    align-self: flex-start;
}

.user-message {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    align-self: flex-end;
}

.bot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    gap: 0.5rem;
}

.bot-input input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 25px;
    outline: none;
    font-size: 0.95rem;
}

.bot-input input:focus {
    border-color: var(--primary-color);
}

.bot-input button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bot-input button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .bismillah-section {
        padding: 100px 0 40px;
    }
    
    .bismillah-image {
        max-width: 300px;
    }
    
    .trust-content h2 {
        font-size: 2rem;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .search-content h2 {
        font-size: 1.75rem;
    }
    
    .category-list {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .bot-chat {
        width: 300px;
        height: 350px;
        bottom: 80px;
        right: 15px;
    }
    
    .payment-popup {
        top: 15px;
        right: 15px;
        left: 15px;
        transform: translateY(-100px);
    }
    
    .payment-popup.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .bismillah-image {
        max-width: 250px;
    }
    
    .trust-content h2 {
        font-size: 1.75rem;
    }
    
    .search-content h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .bot-chat {
        width: calc(100vw - 30px);
        right: 15px;
        left: 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.slide-in-right {
    transform: translateX(100px);
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pulse {
    /* animation: pulse 2s infinite; */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

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

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

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

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }


/* Service Details Styles */
.service-details-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.service-details-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--gray-100);
    padding: 8px;
}

.service-details-content {
    text-align: left;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-weight: 500;
}

.delivery-time {
    background: linear-gradient(135deg, var(--accent-color), #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
}

.support-info {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--gray-800);
    border-left: 4px solid var(--primary-color);
}

.detail-actions {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}


/* Social Media Services Section */
.social-media-services {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.social-media-content {
    text-align: center;
}

.social-media-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 3rem;
    text-align: center;
}

.social-media-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.social-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: var(--gray-100);
    padding: 8px;
}

.social-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.social-icon:hover span {
    color: var(--primary-color);
}

/* Animation for social icons */
.social-icon {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-icon:nth-child(5) { animation-delay: 0.5s; }
.social-icon:nth-child(6) { animation-delay: 0.6s; }
.social-icon:nth-child(7) { animation-delay: 0.7s; }
.social-icon:nth-child(8) { animation-delay: 0.8s; }

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

/* Responsive design for social media icons */
@media (max-width: 768px) {
    .social-media-icons {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
    }
    
    .social-icon {
        padding: 1rem;
    }
    
    .social-icon img {
        width: 50px;
        height: 50px;
    }
    
    .social-icon span {
        font-size: 0.8rem;
    }
}


/* Discount Timer Box */
.discount-timer-box {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.discount-timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    /* animation: float 6s ease-in-out infinite; */
}

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

.discount-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.discount-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.discount-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.timer-display {
    text-align: center;
}

.timer-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.timer {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.timer span {
    display: inline-block;
    min-width: 40px;
}

/* Lowest Prices Section */
.lowest-prices-section {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lowest-prices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="50" fill="url(%23b)"/><circle cx="900" cy="200" r="80" fill="url(%23b)"/><circle cx="300" cy="800" r="60" fill="url(%23b)"/></svg>');
    opacity: 0.3;
}

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

.lowest-prices-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    /* animation: pulse 2s ease-in-out infinite; */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.lowest-prices-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-feature i {
    font-size: 1.5rem;
    color: #fbbf24;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .discount-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .timer {
        font-size: 1.5rem;
        padding: 8px 15px;
    }
    
    .lowest-prices-content h2 {
        font-size: 2rem;
    }
    
    .price-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Fake Visitors Section */
.fake-visitors-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
}

.visitors-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-width: 140px;
    flex-shrink: 0;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.recent-orders {
    text-align: center;
}

.recent-orders h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.recent-orders h4 i {
    color: var(--primary-color);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

.order-item {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 3px solid var(--success-color);
    animation: slideInRight 0.5s ease;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.order-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.order-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.order-service {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.order-time {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

@media (max-width: 768px) {
    .visitors-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .order-info {
        width: 100%;
    }
    
    .order-time {
        align-self: flex-end;
    }
}


/* Discount Badge */
.discount-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* animation: pulse 2s ease-in-out infinite; */
}

/* Original Price Strikethrough */
.original-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Discount Text */
.discount-text {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Review Card Styles */
.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.review-service {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-time {
    color: var(--gray-400);
    font-size: 0.85rem;
    text-align: right;
}

/* Service Info Styles */
.service-info {
    margin: 1.5rem 0;
}

.service-info h4 {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 1.5rem;
}

.service-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-info li:last-child {
    border-bottom: none;
}

/* Order Summary Styles */
.order-summary {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.order-summary h4 {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.order-summary p {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

/* Modal Actions */
.modal-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .discount-content {
        text-align: center;
    }
    
    .discount-info h3 {
        font-size: 1.2rem;
    }
    
    .discount-info p {
        font-size: 1rem;
    }
    
    .timer {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Payment Method Header and Logo Styles */
.payment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.payment-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-method h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
}



/* Owner Info in Header */
.owner-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto; /* Pushes it to the right */
}

.owner-dp {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.owner-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Portfolio Page Styles */
.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    min-height: calc(100vh - 180px);
}

.portfolio-card {
    background: linear-gradient(135deg, var(--white), #f8fafc);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    border-radius: 30px;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 32px;
    z-index: -1;
}

.portfolio-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.portfolio-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 6px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    background: var(--white);
}

.portfolio-avatar:hover {
    transform: scale(1.05);
}

.portfolio-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.portfolio-tagline {
    font-size: 1.2rem;
    color: var(--gray-600);
    font-weight: 500;
}

.portfolio-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.portfolio-details {
    text-align: left;
    margin-bottom: 3rem;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, var(--white));
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.portfolio-details::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1.1rem;
}

.detail-value {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 1.1rem;
}

.detail-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.detail-value a:hover {
    text-decoration: underline;
}

.portfolio-skills {
    text-align: left;
    margin-bottom: 3rem;
}

.portfolio-skills h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.portfolio-skills h3 i {
    color: #fbbf24;
}

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

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-item.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.skill-item.secondary {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    color: white;
}

.skill-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.skill-item i {
    font-size: 1.2rem;
}

.portfolio-contact {
    text-align: center;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.contact-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.contact-btn i {
    font-size: 1.3rem;
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .owner-info {
        margin-left: 0;
        margin-top: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: space-around;
        margin-top: 1rem;
    }

    .portfolio-card {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
    }

    .portfolio-avatar {
        width: 160px;
        height: 160px;
    }

    .portfolio-info h2 {
        font-size: 2rem;
    }

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

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .visitors-stats {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 0.5rem 0.75rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .owner-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .owner-dp {
        width: 40px;
        height: 40px;
    }
}



/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* animation: pulse 2s ease-in-out infinite; */
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.loading-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.loading-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-loading-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    /* animation: bounce 1.5s ease-in-out infinite; */
}

.social-loading-icon:nth-child(1) { animation-delay: 0s; }
.social-loading-icon:nth-child(2) { animation-delay: 0.2s; }
.social-loading-icon:nth-child(3) { animation-delay: 0.4s; }
.social-loading-icon:nth-child(4) { animation-delay: 0.6s; }
.social-loading-icon:nth-child(5) { animation-delay: 0.8s; }

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    animation: loading 2s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .loading-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .loading-text h2 {
        font-size: 2rem;
    }
    
    .loading-icons {
        gap: 1rem;
    }
    
    .social-loading-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .loading-bar {
        width: 250px;
    }
}



/* WhatsApp Payment and Service Details Styling */
.whatsapp-payment-info {
    background: linear-gradient(135deg, #e0ffef, #d0ffe0);
    border: 1px solid #25d366;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.whatsapp-payment-info h3 {
    color: #25d366;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-payment-info h3 i {
    font-size: 2rem;
}

.whatsapp-payment-info p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.whatsapp-payment-info .whatsapp-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.whatsapp-payment-info .whatsapp-number:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

.whatsapp-payment-info .whatsapp-number i {
    margin-right: 8px;
}

/* Styling for WhatsApp support in service details modal */
.order-details .whatsapp-support {
    font-size: 1.1rem;
    font-weight: 600;
    color: #25d366;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-details .whatsapp-support i {
    font-size: 1.3rem;
}



/* Fake Payment Popup Styles */
.fake-payment-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: linear-gradient(135deg, #00c851, #007e33);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 200, 81, 0.3);
    padding: 0;
    min-width: 320px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.fake-payment-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.fake-payment-content {
    padding: 0;
    color: white;
}

.fake-payment-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fake-payment-header i {
    font-size: 16px;
    color: #ffffff;
}

.fake-payment-body {
    padding: 16px;
}

.fake-payment-body p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.4;
}

.fake-payment-body p:last-child {
    margin-bottom: 0;
}

.fake-payment-price {
    color: #ffeb3b !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.fake-payment-time {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 11px !important;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .fake-payment-popup {
        right: 10px;
        top: 10px;
        min-width: 280px;
        max-width: calc(100vw - 20px);
    }
    
    .fake-payment-header {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .fake-payment-body {
        padding: 14px;
    }
    
    .fake-payment-body p {
        font-size: 12px;
    }
    
    .fake-payment-price {
        font-size: 13px !important;
    }
}

/* Animation for better visibility */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}


/* Payment Methods Logos Styles */
.payment-methods-logos {
    margin: 20px 0;
    text-align: center;
}

.payment-methods-logos h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.payment-logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile responsive for payment logos */
@media (max-width: 768px) {
    .payment-logos {
        gap: 15px;
    }
    
    .payment-logo {
        height: 40px;
        max-width: 100px;
        padding: 6px 10px;
    }
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile Styles */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .stylish-title {
        font-size: 1.4rem !important;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .owner-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .owner-dp {
        width: 35px;
        height: 35px;
    }
    
    .owner-name {
        font-size: 0.9rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        background: var(--gray-100);
        border-radius: 20px;
        text-decoration: none;
    }
    
    .header-bottom {
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }
    
    .bismillah-text {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .header-whatsapp-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stylish-title {
        font-size: 1.2rem !important;
        letter-spacing: 0.3px;
    }
    
    .logo i {
        font-size: 1.2rem;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .bismillah-text {
        font-size: 1rem;
    }
    
    .header-whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .owner-dp {
        width: 30px;
        height: 30px;
    }
    
    .owner-name {
        font-size: 0.8rem;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .stylish-title {
        font-size: 1.6rem !important;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .nav {
        gap: 1.5rem;
    }
}



.logo-img {
 max-width: 100px; /* Adjusted for smaller size */    margin-right: 10px;
}

.header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-main {
    flex-direction: column;
    align-items: center;
}

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




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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.6);
    }
}

/* Enhanced Card Styles with Animations */
.service-card {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Enhanced Loading Screen */
.loading-screen {
    animation: fadeInUp 0.5s ease-out;
}

.loading-logo-img {
    animation: bounceIn 1s ease-out;
}

.loading-icons {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.social-loading-icon {
    /* animation: float 2s ease-in-out infinite; */
}

.social-loading-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.social-loading-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.social-loading-icon:nth-child(4) {
    animation-delay: 0.6s;
}

.social-loading-icon:nth-child(5) {
    animation-delay: 0.8s;
}

/* Enhanced Header Animations */
.header {
    animation: slideInFromTop 0.8s ease-out;
}

.logo-img {
    animation: rotateIn 1s ease-out;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.stylish-title {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.owner-dp {
    animation: scaleIn 0.8s ease-out 0.5s both;
    transition: transform 0.3s ease;
}

.owner-dp:hover {
    transform: scale(1.2);
    /* animation: glow 1s ease-in-out infinite; */
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Enhanced Social Icons */
.social-icon {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.social-icon img {
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Trust Items */
.trust-item {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.trust-item i {
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Enhanced Search Bar */
.search-bar {
    transition: all 0.3s ease;
}

.search-bar:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1), var(--shadow-lg);
}

/* Enhanced Category Buttons */
.category-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

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

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

.category-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Enhanced Statistics */
.stat-item {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    animation: scaleIn 0.8s ease-out 0.3s both;
}

/* Enhanced Discount Timer */
.discount-timer-box {
    animation: slideInFromTop 0.8s ease-out 0.5s both;
}

.timer {
    /* animation: glow 2s ease-in-out infinite; */
}

/* Enhanced WhatsApp Buttons */
.header-whatsapp-btn, .whatsapp-channel-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

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

.header-whatsapp-btn:hover::before, .whatsapp-channel-btn:hover::before {
    left: 100%;
}

.header-whatsapp-btn:hover, .whatsapp-channel-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Enhanced Reviews */
.review-card {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

/* Enhanced Contact Form */
.contact-form {
    animation: fadeInUp 0.8s ease-out;
}

.form-group input, .form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1), var(--shadow-lg);
}

/* Enhanced Footer */
.footer {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .trust-item:hover {
        transform: translateY(-5px);
    }
    
    .social-icon:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }
    
    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance Optimizations */
.service-card, .trust-item, .social-icon {
    will-change: transform;
}

.btn-primary, .category-btn, .header-whatsapp-btn, .whatsapp-channel-btn {
    will-change: transform, box-shadow;
}

/* Enhanced Gradients */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Loading Progress Bar */
.loading-progress {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    /* animation: shimmer 2s infinite; */
}

/* Enhanced Bismillah Section */
.bismillah-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 400% 400%;
    animation: gradient-shift 10s ease-in-out infinite;
}

.bismillah-image {
    /* animation: float 3s ease-in-out infinite; */
}

/* Enhanced Service Price Display */
.service-price {
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    /* animation: glow 2s ease-in-out infinite; */
}

/* Enhanced Modal Animations */
.modal {
    animation: fadeInUp 0.3s ease-out;
}

.modal-content {
    animation: scaleIn 0.3s ease-out;
}

/* Enhanced Notification Styles */
.notification {
    animation: slideInFromTop 0.5s ease-out;
    transition: all 0.3s ease;
}

.notification:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Enhanced Professional Theme Styles for New Pages */

/* Logo Image Styling */
.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

.about-hero-image {
    text-align: center;
}

.hero-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

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

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--gray-100);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.story-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.story-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-stats .stat-item p {
    color: var(--gray-600);
    font-weight: 500;
}

.founder-img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.vision-card {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: white;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--gray-800);
    margin-bottom: 3rem;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

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

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail-section.alt-bg {
    background: var(--gray-100);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-icon img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.service-header-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.service-header-text p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.feature-card .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

/* Service Process Section */
.service-process {
    padding: 80px 0;
    background: var(--white);
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

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

/* Service Guarantees */
.service-guarantees {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.guarantee-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pricing-toggle-section {
    padding: 40px 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray-700);
}

.save-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-section {
    padding: 60px 0;
}

.pricing-section.alt-bg {
    background: var(--gray-100);
}

.pricing-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Custom Packages Section */
.custom-packages {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.custom-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.custom-content > p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.custom-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.custom-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.custom-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.custom-feature p {
    color: var(--gray-600);
    line-height: 1.6;
}

.custom-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background: var(--white);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minItems(200px, 1fr));
    gap: 2rem;
}

.payment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.payment-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.payment-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.payment-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Testimonials Page Styles */
.testimonials-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.testimonials-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Featured Testimonials */
.featured-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.client-title {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.testimonial-results {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Client Testimonials */
.client-testimonials {
    padding: 80px 0;
    background: var(--gray-100);
}

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

/* Success Metrics */
.success-metrics {
    padding: 80px 0;
    background: var(--white);
}

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

.metric-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.metric-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-800);
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.video-testimonial {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

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

/* Industry Testimonials */
.industry-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--gray-200);
    border: none;
    color: var(--gray-600);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.trust-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.trust-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Quick Contact */
.quick-contact {
    padding: 60px 0;
    background: var(--white);
}

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

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.quick-contact-item.whatsapp {
    border-color: #25d366;
}

.quick-contact-item.whatsapp:hover {
    background: #25d366;
    color: white;
}

.quick-contact-item.phone {
    border-color: var(--primary-color);
}

.quick-contact-item.phone:hover {
    background: var(--primary-color);
    color: white;
}

.quick-contact-item.email {
    border-color: var(--accent-color);
}

.quick-contact-item.email:hover {
    background: var(--accent-color);
    color: white;
}

.quick-contact-item .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.quick-contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-status {
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

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

/* Social Contact Card */
.social-contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.social-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
    text-align: center;
}

.social-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.social-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-contact-item.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.social-contact-item.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-contact-item.instagram {
    color: #e4405f;
    border-color: #e4405f;
}

.social-contact-item.instagram:hover {
    background: #e4405f;
    color: white;
}

.social-contact-item.tiktok {
    color: #000000;
    border-color: #000000;
}

.social-contact-item.tiktok:hover {
    background: #000000;
    color: white;
}

.social-contact-item.youtube {
    color: #ff0000;
    border-color: #ff0000;
}

.social-contact-item.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-contact-item.whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.social-contact-item.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-contact-item i {
    font-size: 1.5rem;
}

.social-contact-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    color: white;
    text-align: center;
}

.emergency-content {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.emergency-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.emergency-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.service-card,
.testimonial-card,
.pricing-card,
.feature-item,
.value-item {
    animation: fadeInUp 0.6s ease-out;
}

.about-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.about-hero-image {
    animation: fadeInRight 0.8s ease-out;
}

.team-member {
    animation: scaleIn 0.6s ease-out;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Enhanced Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gradient-bg-2 {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--warning-color), #f97316);
}

/* Enhanced Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Enhanced Card Hover Effects */
.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Professional Color Scheme */
.professional-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.professional-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.professional-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.professional-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Enhanced Typography */
.display-1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
}

.display-2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.display-3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Enhanced Spacing */
.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero h1,
    .services-hero h1,
    .pricing-hero h1,
    .testimonials-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .header-content {
        text-align: center;
    }
    
    .social-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .display-1 {
        font-size: 2.5rem;
    }
    
    .display-2 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .about-hero,
    .services-hero,
    .pricing-hero,
    .testimonials-hero,
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero h1,
    .services-hero h1,
    .pricing-hero h1,
    .testimonials-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .display-1 {
        font-size: 2rem;
    }
    
    .display-2 {
        font-size: 1.8rem;
    }
    
    .display-3 {
        font-size: 1.6rem;
    }
}

/* Enhanced Loading Animations */
.loading-animation {
    /* animation: pulse 2s infinite; */
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Interactive Elements */
.interactive-element {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-element:hover {
    transform: scale(1.05);
}

.interactive-element:active {
    transform: scale(0.95);
}

/* Professional Shadows */
.shadow-soft {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.shadow-strong {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
}

/* Enhanced Focus States */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

/* Professional Borders */
.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
}

/* Enhanced Text Effects */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Professional Layout Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Enhanced Backdrop Effects */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.backdrop-brightness {
    backdrop-filter: brightness(1.1);
    -webkit-backdrop-filter: brightness(1.1);
}

/* Professional Transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Enhanced Professional Theme Complete */



/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .header-main {
        flex-direction: column;
        gap: 1rem;
    }

    .owner-info {
        margin-top: 1rem;
    }

    .discount-timer-box .container {
        padding: 0 10px;
    }

    .discount-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .fake-visitors-section .container {
        padding: 0 10px;
    }

    .visitors-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .social-media-icons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .trust-features {
        grid-template-columns: 1fr;
    }

    .search-bar-container {
        margin: 0 10px 2rem;
    }

    .category-list {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

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

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

    .review-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a,
    .footer-contact p {
        justify-content: center;
    }

    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 0.5rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .payment-popup {
        top: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 1rem 0;
        gap: 0.75rem;
    }

    .header-main {
        gap: 1rem;
    }

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

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        background: var(--gray-100);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-color);
        color: white;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .stylish-title {
        font-size: 1.6rem !important;
    }

    .bismillah-text {
        font-size: 1.2rem;
    }

    .header-whatsapp-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .discount-content h3 {
        font-size: 1.2rem;
    }

    .discount-content p {
        font-size: 0.9rem;
    }

    .timer {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .social-icon img {
        width: 60px;
        height: 60px;
    }

    .social-icon span {
        font-size: 0.8rem;
    }

    .trust-content h2,
    .search-content h2,
    .reviews-section h2 {
        font-size: 2rem;
    }

    .search-bar {
        padding: 0.8rem 1rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 1rem;
        font-size: 0.9rem;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

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

    .service-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .service-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .service-price {
        font-size: 1.4rem;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .quantity-controls {
        padding: 0.4rem;
        gap: 0.5rem;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .quantity-display {
        min-width: 35px;
        font-size: 1rem;
        padding: 0.4rem;
    }

    .service-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn-secondary {
        min-width: auto;
    }

    .service-features {
        gap: 0.4rem;
    }

    .service-feature {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .discount-badge {
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .review-info h4 {
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .footer-brand .logo h3 {
        font-size: 1.2rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.85rem;
    }

    .modal-content {
        margin: 2% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
    }

    .payment-method {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 0.75rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-content {
        padding: 0.75rem 0;
        gap: 0.5rem;
    }

    .nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .stylish-title {
        font-size: 1.4rem !important;
    }

    .bismillah-text {
        font-size: 1rem;
    }

    .header-whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .discount-content h3 {
        font-size: 1rem;
    }

    .timer {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .social-icon img {
        width: 50px;
        height: 50px;
    }

    .social-icon span {
        font-size: 0.7rem;
    }

    .trust-content h2,
    .search-content h2,
    .reviews-section h2 {
        font-size: 1.8rem;
    }

    .search-bar {
        padding: 0.7rem 0.8rem 0.7rem 2rem;
        font-size: 0.8rem;
    }

    .search-icon {
        left: 0.8rem;
        font-size: 0.8rem;
    }

    .category-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .service-price {
        font-size: 1.2rem;
    }

    .quantity-controls {
        padding: 0.3rem;
        gap: 0.4rem;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .quantity-display {
        min-width: 30px;
        font-size: 0.9rem;
        padding: 0.3rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }

    .service-feature {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }

    .discount-badge {
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .review-info h4 {
        font-size: 0.8rem;
    }

    .review-text {
        font-size: 0.75rem;
    }

    .footer-brand .logo h3 {
        font-size: 1rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.75rem;
    }

    .modal-content {
        margin: 1% auto;
        padding: 1rem;
        width: 98%;
        max-height: 95vh;
    }

    .payment-method {
        padding: 0.75rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }

    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 0.5rem;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .service-card {
        padding: 0.75rem;
    }

    .service-title {
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .quantity-display {
        min-width: 28px;
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 0.7rem;
        font-size: 0.75rem;
    }

    .discount-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}



/* Enhanced Social Media Icons Styles */
.services-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.enhanced-icon {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: auto;
    min-height: 200px;
}

.enhanced-icon:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.icon-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.icon-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.enhanced-icon:hover .icon-wrapper img {
    transform: scale(1.1);
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.icon-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.enhanced-icon:hover .icon-overlay {
    opacity: 0.9;
}

.enhanced-icon:hover .icon-overlay i {
    transform: scale(1);
}

.icon-content {
    padding: 0 1rem 1rem;
    text-align: center;
}

.icon-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    display: block;
    margin-bottom: 0.5rem;
}

.icon-subtitle {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: block;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.icon-stats {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
}

.stat-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stat-badge.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.stat-badge.trending {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.stat-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-badge.hot {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.stat-badge.expert {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.stat-badge.custom {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.stat-badge.unlimited {
    background: linear-gradient(135deg, #84cc16, #65a30d);
    color: white;
}

.enhanced-icon:hover .stat-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* Responsive adjustments for enhanced icons */
@media (max-width: 768px) {
    .social-media-icons {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .enhanced-icon {
        min-height: 180px;
    }
    
    .icon-wrapper {
        height: 100px;
    }
    
    .icon-wrapper img {
        width: 60px;
        height: 60px;
    }
    
    .icon-title {
        font-size: 1rem;
    }
    
    .icon-subtitle {
        font-size: 0.8rem;
    }
    
    .services-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem 1rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-media-icons {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .enhanced-icon {
        min-height: 160px;
    }
    
    .icon-wrapper {
        height: 80px;
    }
    
    .icon-wrapper img {
        width: 50px;
        height: 50px;
    }
    
    .icon-title {
        font-size: 0.9rem;
    }
    
    .icon-subtitle {
        font-size: 0.75rem;
    }
    
    .services-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.6rem 1rem;
    }
}


/* Enhanced About Page Styles */
.enhanced-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    /* animation: float 6s ease-in-out infinite; */
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #fbbf24;
}

.enhanced-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.enhanced-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.enhanced-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.enhanced-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

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

.enhanced-btn.btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.enhanced-btn.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.enhanced-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    /* Animation disabled to prevent scrolling issues */
}

.floating-icon.tiktok {
    background: #000;
    top: 10%;
    left: -10%;
}

.floating-icon.youtube {
    background: #ff0000;
    top: 20%;
    right: -15%;
}

.floating-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    bottom: 30%;
    left: -5%;
}

.floating-icon.whatsapp {
    background: #25d366;
    bottom: 10%;
    right: -10%;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Enhanced Page Styles for All Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.enhanced-section {
    padding: 80px 0;
    position: relative;
}

.enhanced-section:nth-child(even) {
    background: var(--gray-50);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

/* Enhanced Cards */
.enhanced-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

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

.card-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive adjustments for enhanced pages */
@media (max-width: 768px) {
    .enhanced-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .enhanced-title {
        font-size: 2.5rem;
    }
    
    .enhanced-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .enhanced-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .enhanced-title {
        font-size: 2rem;
    }
    
    .enhanced-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .enhanced-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
    
    .image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .enhanced-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}



.feature-price-no-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    background: none;
}



/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-media-icons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1rem 0;
    }

    .header-main {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .logo {
        justify-content: center;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .stylish-title {
        font-size: 1.5rem !important;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
        width: 100%;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        background: var(--gray-100);
        border-radius: 25px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    .bismillah-section {
        padding: 120px 0 40px;
    }

    .bismillah-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .bismillah-image {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }

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

    .service-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .service-card .price {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card .description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .service-card .buy-btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
    }

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

    .trust-item {
        padding: 1.5rem;
        text-align: center;
    }

    .trust-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .trust-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .trust-item p {
        font-size: 0.9rem;
    }

    .search-bar-container {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .search-bar {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .search-icon {
        left: 1rem;
    }

    .category-list {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-list::-webkit-scrollbar {
        display: none;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-media-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-icon {
        padding: 1rem;
    }

    .social-icon img {
        width: 60px;
        height: 60px;
    }

    .social-icon span {
        font-size: 0.8rem;
    }

    .whatsapp-channel-btn,
    .header-whatsapp-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        width: auto;
        min-width: 200px;
    }

    .owner-info {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }

    .owner-dp {
        width: 35px;
        height: 35px;
    }

    .owner-name {
        font-size: 0.8rem;
    }

    /* Enhanced page responsiveness */
    .page-title {
        font-size: 2.5rem;
    }

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

    .enhanced-card {
        padding: 2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-content {
        padding: 0.75rem 0;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .stylish-title {
        font-size: 1.3rem !important;
        letter-spacing: 0.5px;
    }

    .nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        min-height: 40px;
    }

    .bismillah-section {
        padding: 100px 0 30px;
    }

    .bismillah-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .bismillah-image {
        max-width: 250px;
        margin-bottom: 1rem;
    }

    .whatsapp-channel-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        min-width: 180px;
    }

    .service-card {
        padding: 1.25rem;
        margin: 0 5px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .service-card .price {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-card .description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-card .buy-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .trust-item {
        padding: 1.25rem;
    }

    .trust-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .trust-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .trust-item p {
        font-size: 0.85rem;
    }

    .search-bar {
        padding: 0.6rem 0.75rem 0.6rem 2.25rem;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 0.75rem;
        font-size: 1rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 36px;
    }

    .social-media-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .social-icon {
        padding: 0.75rem;
    }

    .social-icon img {
        width: 50px;
        height: 50px;
    }

    .social-icon span {
        font-size: 0.75rem;
    }

    .owner-dp {
        width: 30px;
        height: 30px;
    }

    .owner-name {
        font-size: 0.75rem;
    }

    .header-whatsapp-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        min-width: 160px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

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

    .enhanced-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .stylish-title {
        font-size: 1.2rem !important;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-height: 36px;
    }

    .bismillah-image {
        max-width: 200px;
    }

    .whatsapp-channel-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        min-width: 150px;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card .price {
        font-size: 1.1rem;
    }

    .service-card .description {
        font-size: 0.8rem;
    }

    .service-card .buy-btn {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .social-media-icons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .trust-features {
        gap: 1rem;
    }

    .trust-item {
        padding: 1rem;
    }

    .trust-item i {
        font-size: 1.8rem;
    }

    .trust-item h3 {
        font-size: 0.95rem;
    }

    .trust-item p {
        font-size: 0.8rem;
    }

    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-height: 32px;
    }

    .header-whatsapp-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        min-width: 140px;
    }

    .page-title {
        font-size: 1.8rem;
    }

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

    .enhanced-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.85rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .trust-item:hover,
    .social-icon:hover,
    .enhanced-card:hover {
        transform: none;
    }
    
    .service-card:active,
    .trust-item:active,
    .social-icon:active,
    .enhanced-card:active {
        transform: scale(0.98);
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: none;
    }
    
    .nav-link:active {
        transform: scale(0.95);
    }
    
    .category-btn:hover {
        transform: none;
    }
    
    .category-btn:active {
        transform: scale(0.95);
    }
    
    .buy-btn:hover {
        transform: none;
    }
    
    .buy-btn:active {
        transform: scale(0.98);
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .bismillah-section {
        padding: 80px 0 30px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .enhanced-hero {
        padding: 60px 0 40px;
        min-height: 70vh;
    }
    
    .services-section,
    .trust-section,
    .enhanced-section {
        padding: 40px 0;
    }
}

