.elementor-937 .elementor-element.elementor-element-c9c9c7d{--display:flex;}.elementor-937 .elementor-element.elementor-element-c9c9c7d.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-937 .elementor-element.elementor-element-bf483cd{width:100%;max-width:100%;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-937 .elementor-element.elementor-element-bf483cd{width:100%;max-width:100%;}}@media(min-width:768px){.elementor-937 .elementor-element.elementor-element-c9c9c7d{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-bf483cd *//* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* FIXED: Background color added */
    background: linear-gradient(135deg, #0a1a2f, #1a3650);
    color: white;
    min-height: 100vh;
}

/* ===== MAIN CONTAINER ===== */
.sms-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 0;
    /* FIXED: Background gradient */
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 30px;
    position: relative;
    z-index: 2;
}

/* ===== FLOATING BUTTONS ===== */
.contact-floating {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid gold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
}

.contact-floating a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-floating i {
    color: gold;
    font-size: 22px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 15px;
    background: #25d366;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid gold;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    z-index: 9999;
}

.whatsapp-float i {
    font-size: 22px;
}

/* ===== UGANDA STRIPE ===== */
.uganda-stripe {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 0 0 15px;
}

.stripe {
    width: 50px;
    height: 6px;
    border-radius: 3px;
}

.stripe.black { background: black; }
.stripe.yellow { background: gold; }
.stripe.red { background: #e11b22; }

/* ===== HEADER ===== */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sub-title {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.price-banner {
    background: gold;
    color: #1e3c72;
    padding: 12px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 20px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card i {
    font-size: 32px;
    color: gold;
    margin-bottom: 8px;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 3px;
}

.stat-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-size: 32px;
    margin: 40px 0 25px;
    background: linear-gradient(45deg, #fff, gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: gold;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: gold;
    border: 2px solid gold;
}

.service-card h3 {
    font-size: 20px;
    color: gold;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.price-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.3);
}

.price-item .amount {
    font-size: 18px;
    font-weight: bold;
    color: gold;
    margin-bottom: 8px;
}

.price-item .price {
    font-size: 16px;
    margin: 8px 0;
}

.price-item .old {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 5px;
    font-size: 14px;
}

.price-item .save {
    color: #4caf50;
    font-size: 13px;
    font-weight: bold;
}

/* ===== ORDER FORM ===== */
.order-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: gold;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: gold;
}

.char-count {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: gold;
}

/* ===== DELIVERY OPTIONS ===== */
.delivery-options {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.delivery-option {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option.selected {
    background: rgba(255,215,0,0.2);
    border-color: gold;
}

.delivery-option i {
    font-size: 30px;
    color: gold;
    margin-bottom: 8px;
}

.delivery-option h4 {
    color: gold;
    margin-bottom: 5px;
}

.delivery-option p {
    font-size: 13px;
    opacity: 0.9;
}

/* ===== PRICE BOX ===== */
.price-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
}

.price-display {
    font-size: 42px;
    font-weight: 800;
    color: gold;
    margin: 10px 0;
}

.saving {
    color: #4caf50;
    font-weight: bold;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid gold;
    transition: all 0.3s;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* ===== PLANS GRID ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.plan-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.3);
    position: relative;
}

.plan-card.popular {
    border: 2px solid gold;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,215,0,0.2);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -20px;
    background: gold;
    color: #1e3c72;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.plan-card h3 {
    color: gold;
    font-size: 24px;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 16px;
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    color: gold;
    margin: 15px 0;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    margin: 10px 0;
    font-size: 14px;
}

.features i {
    color: gold;
    margin-right: 8px;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid gold;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-btn:hover {
    background: gold;
    color: #1e3c72;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    position: relative;
}

.quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: gold;
    opacity: 0.3;
}

.testimonial-card p {
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid gold;
}

/* ===== PARTNERS ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.partner {
    background: rgba(255,255,255,0.1);
    padding: 15px 5px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid rgba(255,215,0,0.3);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(30,60,114,0.3), rgba(42,82,152,0.3));
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid rgba(255,215,0,0.3);
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: gold;
}

.contact-number {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: bold;
    color: gold;
    border: 2px solid gold;
    display: inline-block;
    margin: 15px 0;
}

.contact-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s;
}

.contact-btn.email {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: 2px solid gold;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid gold;
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn:active {
    transform: scale(0.98);
}

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    margin: 40px 0 20px;
    padding: 40px 20px;
    background: linear-gradient(135deg, gold, #ffa500);
    border-radius: 30px;
    color: #1e3c72;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-phone {
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.cta-btn {
    flex: 1;
    max-width: 250px;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: transform 0.3s;
}

.cta-btn.email {
    background: #1e3c72;
    border: 2px solid white;
}

.cta-btn.whatsapp {
    background: #25d366;
    border: 2px solid white;
}

.cta-btn i {
    margin-right: 8px;
}

.cta-btn:active {
    transform: scale(0.98);
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
    background: #4caf50;
    color: white;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .main-title { font-size: 36px; }
    .pricing-table { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 100%; }
    .main-title { font-size: 28px; }
    .price-banner { font-size: 18px; }
    .pricing-table { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-table { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .delivery-options { flex-direction: column; }
    .contact-number { font-size: 22px; }
    .cta-phone { font-size: 28px; }
    .contact-floating, .whatsapp-float { padding: 8px 15px; }
    .contact-floating a { font-size: 14px; }
    .whatsapp-float span { font-size: 12px; }
}

/* ===== ANIMATIONS ===== */
.service-card, .stat-card, .price-item, .plan-card {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }/* End custom CSS */