:root {
    --primary-orange: #f36b21;
    --dark-gray: #1f1f1f;
    --light-gray: #f7f7f7;
    --white: #ffffff;
    --text-gray: #444444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(243, 107, 33, 0.1);
    transition: all 0.3s ease;
    min-height: 80px; /* Ensure navbar height accommodates logo (65px + padding) */
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.navbar-logo {
    width: 180px;
    height: 65px;
    margin: 0;
    padding: 0;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-gray) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* CTA Button Styles */
.btn-light.btn-lg {
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-light.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Final CTA Section Styles */
.bg-gradient.position-relative {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.bg-gradient.position-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 107, 33, 0.9) 0%, rgba(255, 143, 80, 0.9) 100%);
    z-index: -1;
}

.hero-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(243,107,33,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.company-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--primary-orange);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.btn-primary-custom:hover {
    background: #d85a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 107, 33, 0.3);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 107, 33, 0.3);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.founder-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder-image-container:hover {
    transform: translateY(-5px);
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-image-container:hover .founder-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.founder-image-container:hover .image-overlay {
    transform: translateY(0);
}

.services-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-badge span {
    background: var(--primary-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.founder-info {
    padding: 2rem 0;
}

.founder-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.founder-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 500;
}

.achievement-item i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-info li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary-orange);
    width: 20px;
    font-size: 1rem;
}

.founder-cta {
    margin-top: 1.5rem;
}

.btn-connect {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-connect:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(243, 107, 33, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(243, 107, 33, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-orange), #d85a1a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #d85a1a;
    transform: translateX(5px);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* ===== WHATSAPP ONBOARDING SECTION ===== */
.whatsapp-onboarding-section {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
    overflow: hidden;
    position: relative;
}

.whatsapp-onboarding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.whatsapp-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.whatsapp-onboarding-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.whatsapp-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.whatsapp-content {
    background: white;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.whatsapp-onboarding-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatsapp-onboarding-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid rgba(37, 211, 102, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-onboarding-list li:last-child {
    border-bottom: none;
}

.whatsapp-onboarding-list li:hover {
    background: rgba(37, 211, 102, 0.05);
    transform: translateX(5px);
    padding-left: 0.5rem;
}

.whatsapp-onboarding-list i {
    color: #25d366;
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.whatsapp-cta {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-demo-btn,
.whatsapp-start-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.whatsapp-demo-btn {
    background: transparent;
    color: #25d366;
    border: 2px solid #25d366;
}

.whatsapp-demo-btn:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-start-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: 2px solid transparent;
}

.whatsapp-start-btn:hover {
    background: linear-gradient(45deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.4);
}

/* Chat bubble effects */
.whatsapp-onboarding-section::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

/* Services Hero Section */
.services-hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.services-hero-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(243,107,33,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Development Service Card */
.development-service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(243, 107, 33, 0.1);
}

/* Background Light */
.bg-light {
    background-color: var(--light-gray);
}

/* Service Feature List */
.service-feature-list {
    margin-bottom: 1.5rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.service-feature-item i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.service-feature-item span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.development-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(243, 107, 33, 0.15);
}

.dev-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-orange), #d85a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.dev-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.dev-service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-onboarding-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .whatsapp-content {
        padding: 1.5rem;
    }
    
    .whatsapp-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-demo-btn,
    .whatsapp-start-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Hover effect for the entire section */
.whatsapp-onboarding-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.3);
}

/* Success checkmark animation */
.whatsapp-onboarding-list li i.fa-whatsapp {
    animation: whatsapp-bounce 2s ease-in-out infinite;
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* ===== WORKING WHATSAPP BUTTONS ===== */
.whatsapp-demo-btn,
.whatsapp-start-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.whatsapp-demo-btn {
    background: transparent;
    color: #25d366;
    border: 2px solid #25d366;
}

.whatsapp-demo-btn:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-start-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: 2px solid transparent;
}

.whatsapp-start-btn:hover {
    background: linear-gradient(45deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.4);
    color: white;
    text-decoration: none;
}

/* Fix for Font Awesome icons */
.whatsapp-onboarding-list i {
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands';
    font-weight: 900;
}

/* Alternative if Font Awesome doesn't load */
.fa-project-diagram::before {
    content: "🔄";
}

.fa-flow-chart::before {
    content: "📊";
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #fafafa;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-gray);
}

.discount-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
    background-color: var(--primary-orange);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff 0%, #fff9f5 100%);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
}

.btn-get-started {
    width: 100%;
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-get-started:hover {
    background: var(--primary-orange);
    color: white;
}

.featured .btn-get-started {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.featured .btn-get-started:hover {
    background: #d85a1a;
    border-color: #d85a1a;
}

.features-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.features-list i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* On-boarding Services */
.onboarding-section {
    margin-top: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.onboarding-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 2rem;
}

.onboarding-list {
    list-style: none;
    padding: 0;
}

.onboarding-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.onboarding-list i {
    color: var(--primary-orange);
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    margin-top: 2rem;
}

.additional-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

.additional-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.additional-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.additional-item span {
    font-weight: 500;
    color: var(--text-gray);
}

/* Career Page Styles */
.career-hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.career-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.career-hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.career-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.open-positions-section {
    padding: 80px 0;
}

.job-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.job-title-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.job-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Job Description Styles */
.job-description {
    padding: 1.5rem;
    color: var(--text-gray);
}

.job-description h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.job-description h4:first-child {
    margin-top: 0;
}

.job-skills-list,
.job-responsibility-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.job-skills-list li,
.job-responsibility-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.job-skills-list i,
.job-responsibility-list i {
    color: var(--primary-orange);
    margin-top: 0.2rem;
}

.job-apply-btn {
    margin-top: 1.5rem;
}

/* Why Work With Us Section */
.why-work-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 107, 33, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-orange), #d85a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Company Life Section */
.company-life-section {
    padding: 80px 0;
    background: white;
}

.team-photo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-photo-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-photo-caption {
    padding: 1.5rem;
}

.team-photo-caption h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-photo-caption p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-icon {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--primary-orange);
}

/* Application Form Section */
.application-form-section {
    padding: 80px 0;
}

.application-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.career-form .form-group {
    margin-bottom: 1.5rem;
}

.career-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.footer-cta-section {
    background: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.email-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(243, 107, 33, 0.25);
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(243, 107, 33, 0.25);
}

.btn-submit {
    background: var(--primary-orange);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d85a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 107, 33, 0.3);
}

.location-info {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.location-text {
    padding-top: 4px;
    line-height: 1.4;
    max-width: 230px; /* 👈 restricts width to reduce awkward wrapping */
    word-break: break-word;
}



/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logo {
    max-width: 180px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* ===== FOOTER SOCIAL ICONS FIXES ===== */
.footer-social {
    display: flex;
    justify-content: center; /* Changed from flex-start to center */
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap; /* optional, for better responsiveness */
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social .social-link:hover {
    background: #d85a1a;
    color: white;
    transform: translateY(-2px);
}

/* Center social icons on mobile */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        margin-top: 2rem;
    }
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item i {
    color: var(--primary-orange);
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary-orange);
}

/* Clients Section */
.clients-section {
    background: #fff;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: #f7f7f7;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    align-items: center;
    white-space: nowrap;
}

.client-brand {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(243,107,33,0.08);
    margin-right: 2rem;
    border: 1px solid #f36b21;
    color: #f36b21;
    font-family: inherit;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Packages Section */
.packages-section {
    background: #f7f7f7;
}

.card-title.text-primary {
    color: #f36b21 !important;
}

.card-subtitle.text-success {
    color: #10b981 !important;
}

/* CTA Section */
.cta-section {
    background: var(--light-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 280px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .navbar-logo {
        width: 135px;
        height: 48.75px;
    }
    
    /* Services Page Responsive */
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-tagline {
        font-size: 1.2rem;
    }
    
    .development-service-card {
        padding: 1.5rem;
    }
    
    .dev-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .dev-service-title {
        font-size: 1.1rem;
    }
    
    .dev-service-description {
        font-size: 0.9rem;
    }

    /* About Section Responsive */
    .founder-name {
        font-size: 1.8rem;
    }
    
    .founder-achievements {
        flex-direction: column;
    }
    
    .achievement-item {
        width: 100%;
        justify-content: center;
    }
    
    .founder-info {
        text-align: center;
        padding: 1rem 0;
    }

    /* Pricing Section Responsive */
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .onboarding-section {
        padding: 1.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Removed Founder Hero - Not Used */

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(243,107,33,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.team-carousel-container {
    position: relative;
    padding: 0 50px;
    margin: 0 -15px;
}

.team-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 20px 10px;
    gap: 20px;
}

.team-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.team-member {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(243, 107, 33, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--light-gray);
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.member-position {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-orange);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.team-nav-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-member {
        flex: 0 0 260px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-carousel-container {
        padding: 0 40px;
    }
}

@media (max-width: 576px) {
    .team-member {
        flex: 0 0 220px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-position {
        font-size: 0.8rem;
    }
    
    .team-carousel-container {
        padding: 0 30px;
    }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 80px 0;
    background: #fafafa;
}

.blog-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f6c244;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 3rem;
    font-weight: 800;
    color: #3d2b5a;
    margin-bottom: 0;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f6c244;
    color: #3d2b5a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-read-more {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #d85a1a;
}

.btn-view-all-blogs {
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all-blogs:hover {
    background: #d85a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 107, 33, 0.3);
    color: white;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .section-title {
    margin-bottom: 3rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: var(--primary-orange);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 15px;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-orange);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    font-size: 1.2rem;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    background: white;
    padding: 2rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Blog & FAQ */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
    }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-page-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
}

.blog-breadcrumb .breadcrumb {
    background: none;
    margin-bottom: 1rem;
}

.blog-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--primary-orange);
}

.blog-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-main-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
}

.featured-image img {
    border-radius: 15px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 1rem 0;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Blog Grid */
.blog-grid-section {
    padding: 80px 0;
    background: white;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* CTA Section */
.blog-cta-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ARTICLE PAGE STYLES ===== */
.article-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding: 140px 0 80px;
}

.article-breadcrumb {
    margin-bottom: 2rem;
}

.article-breadcrumb .breadcrumb {
    background: none;
}

.article-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.article-category {
    background: var(--primary-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    display: block;
}

.publish-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: white;
}

.main-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.article-image {
    margin-bottom: 2rem;
}

.article-body {
    padding: 0 2rem 2rem;
}

.article-body .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 1.5rem 0 1rem;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.article-conclusion {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.article-tags {
    padding: 2rem;
    border-top: 1px solid #eee;
}

.tag {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
}

.widget-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.author-card {
    text-align: center;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.author-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.author-social a:hover {
    background: #d85a1a;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.related-post img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.related-content h6 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.related-content h6 a {
    color: var(--dark-gray);
    text-decoration: none;
}

.related-content h6 a:hover {
    color: var(--primary-orange);
}

.related-date {
    font-size: 0.8rem;
    color: #999;
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-orange), #d85a1a);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
}

.newsletter-widget .widget-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .form-control {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-orange);
    border: none;
    width: 100%;
    font-weight: 600;
}

/* ===== NEWSLETTER SECTION FIXES ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-orange), #d85a1a) !important;
    padding: 60px 0;
}

.newsletter-section .row {
    margin: 0;
}

.newsletter-section .col-lg-6 {
    padding: 0 15px;
}

/* Hosting Services Table */
.hosting-services-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.hosting-services-table th {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
    padding: 1.2rem 1rem;
    text-align: left;
}

.hosting-services-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.hosting-services-table tr:last-child td {
    border-bottom: none;
}

.hosting-type {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hosting-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 107, 33, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.hosting-type h4 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-gray);
}

.hosting-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hosting-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.hosting-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 55px;
}

.newsletter-form .form-control {
    flex: 1;
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    margin: 0;
    height: 55px;
    background: white;
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 25px;
    font-weight: 600;
    border: none;
    background: white;
    color: var(--primary-orange);
    white-space: nowrap;
    margin: 0;
    height: 55px;
    display: flex;
    align-items: center;
    min-width: 140px;
}

.newsletter-form .btn:hover {
    background: #f8f9fa;
    color: var(--primary-orange);
}

/* Mobile Newsletter Fix */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 15px;
        height: auto;
    }
    
    .newsletter-form .form-control {
        border-radius: 15px 15px 0 0;
        margin-bottom: 0;
        height: 50px;
    }
    
    .newsletter-form .btn {
        border-radius: 0 0 15px 15px;
        height: 50px;
    }
}

/* Digital Marketing & Optimization Section */
.digital-marketing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-accordion {
    margin-top: 3rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 15px 40px rgba(243, 107, 33, 0.1);
    transform: translateY(-5px);
}

.services-section .accordion-button {
    padding: 1.5rem;
    background: white;
    box-shadow: none;
    border: none;
}

.services-section .accordion-button:not(.collapsed) {
    color: var(--primary-orange);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(243, 107, 33, 0.25);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
    color: var(--primary-orange);
}

.accordion-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.accordion-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(45deg, var(--primary-orange), #d85a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.accordion-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.accordion-title p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: white;
}

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(243, 107, 33, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    background: rgba(243, 107, 33, 0.1);
    transform: translateX(5px);
}

.service-feature-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.service-feature-item span {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Hosting Services Section */
.hosting-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hosting-table-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.hosting-table {
    width: 100%;
    background: white;
    border-collapse: separate;
    border-spacing: 0;
}

.hosting-table thead th {
    background: var(--primary-orange);
    color: white;
    font-weight: 600;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    border: none;
}

.hosting-table thead th:first-child {
    border-top-left-radius: 15px;
}

.hosting-table thead th:last-child {
    border-top-right-radius: 15px;
    text-align: center;
}

.hosting-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hosting-table tbody tr:hover {
    background: rgba(243, 107, 33, 0.03);
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hosting-table tbody tr:last-child {
    border-bottom: none;
}

.hosting-table td {
    padding: 1.5rem;
    vertical-align: middle;
    border: none;
}

.hosting-table td:last-child {
    text-align: center;
}

.hosting-type {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hosting-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(45deg, var(--primary-orange), #d85a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.hosting-table tbody tr:hover .hosting-icon {
    transform: rotate(10deg);
}

.hosting-type h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.hosting-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hosting-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.hosting-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.hosting-table .btn-outline-custom {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    background: transparent;
    text-decoration: none;
}

.hosting-table .btn-outline-custom:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 107, 33, 0.2);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #2d3436 0%, #1a1e1f 100%);
    color: #f8f9fa;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), #d85a1a);
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-about p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--primary-orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #adb5bd;
}

.footer-contact li i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #adb5bd;
    margin-bottom: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links-bottom a:hover {
    color: var(--primary-orange);
}

/* Animations and Transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Apply animations to specific elements */
.section-title {
    animation: fadeIn 0.8s ease forwards;
}

.section-subtitle {
    animation: fadeIn 0.8s ease forwards 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.service-card, .development-service-card {
    transition: all 0.4s ease;
}

.service-icon, .dev-service-icon, .accordion-icon, .hosting-icon {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon,
.development-service-card:hover .dev-service-icon {
    transform: rotate(10deg) scale(1.1);
}

.accordion-item:hover .accordion-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-feature-item {
    transition: all 0.3s ease;
}

.footer-links a {
    transition: all 0.3s ease;
}

.social-link {
    transition: all 0.3s ease;
}

.btn-primary-custom, .btn-outline-custom {
    transition: all 0.3s ease;
}

.btn-primary-custom:hover, .btn-outline-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(243, 107, 33, 0.2);
}

.whatsapp-float {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hosting-table td {
        padding: 1.2rem;
    }
    
    .hosting-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    
    .accordion-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    
    .accordion-title-wrapper {
        gap: 1rem;
    }
}

@media (max-width: 991px) {
    .hosting-table thead th {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }
    
    .hosting-table td {
        padding: 1rem;
    }
    
    .hosting-type h4 {
        font-size: 1.1rem;
    }
    
    .hosting-features li {
        font-size: 0.9rem;
    }
    
    .services-section .accordion-button {
        padding: 1.2rem;
    }
    
    .accordion-title h3 {
        font-size: 1.2rem;
    }
    
    .accordion-body {
        padding: 1.2rem 1.5rem 1.5rem;
    }
    
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .hosting-table-container {
        border-radius: 15px;
    }
    
    .hosting-table {
        display: block;
    }
    
    .hosting-table thead {
        display: none;
    }
    
    .hosting-table tbody, .hosting-table tr, .hosting-table td {
        display: block;
        width: 100%;
    }
    
    .hosting-table tr {
        margin-bottom: 1.5rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        overflow: hidden;
        background: white;
    }
    
    .hosting-table tr:last-child {
        margin-bottom: 0;
    }
    
    .hosting-table td {
        position: relative;
        padding: 1rem 1rem 1rem 50%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .hosting-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        white-space: nowrap;
        font-weight: 600;
        color: var(--dark-gray);
    }
    
    .hosting-table td:last-child {
        text-align: center;
        padding: 1rem;
    }
    
    .hosting-type {
        justify-content: flex-start;
    }
    
    .accordion-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .accordion-icon {
        margin-bottom: 0.5rem;
    }
    
    .services-section .accordion-button {
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem 1.2rem 1.5rem;
    }
    
    .service-feature-list {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hosting-table td {
        padding: 1rem;
    }
    
    .hosting-table td:before {
        position: static;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hosting-type {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hosting-icon {
        margin-bottom: 0.5rem;
    }
    
    .hosting-features {
        text-align: left;
    }
    
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-bottom {
        margin-top: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-title, .footer-links, .footer-contact {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}