:root {
    --primary-color: #4e5bf2;
    --secondary-color: #1a1b2e;
    --accent-color: #00aaff;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
}

.nav-link {
    font-weight: 600;
    color: #555 !important;
    margin-left: 15px;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

/* Hero Section (Home) */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary-custom:hover {
    background-color: #3d48c2;
    color: white;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Assist Section */
.assist-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.assist-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.assist-list li i {
    margin-top: 5px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.grid-img-1 { grid-column: 1 / 2; grid-row: 1 / 3; height: 100%; }
.grid-img-2 { grid-column: 2 / 3; height: 150px; }
.grid-img-3 { grid-column: 2 / 3; height: 150px; }

/* Solutions Section */
.solutions-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.solutions-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}

.solutions-card:hover {
    transform: translateY(-5px);
}

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

.solutions-card .card-body {
    padding: 25px;
}

.solutions-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.solutions-list {
    padding-left: 20px;
    color: #666;
}

.solutions-list li {
    margin-bottom: 8px;
}

/* Installation Section */
.installation-section {
    padding: 80px 0;
}

.install-item {
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.install-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.install-desc {
    color: #666;
}

.install-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Begin Section */
.begin-section {
    text-align: center;
    padding: 80px 0;
    background-color: #f0f8ff;
}

.begin-img {
    margin-top: 40px;
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Disclaimer */
.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #eee;
}

/* Footer */
.footer, .footer-dark {
    background-color: #111;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1593784653056-143415610063?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.about-intro-section, .about-images-section, .dedication-section {
    padding: 60px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-image-card img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dedication-img-wrapper img {
    width: 100%;
    border-radius: 15px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(30, 30, 60, 0.6), rgba(30, 30, 60, 0.6)), url('https://images.unsplash.com/photo-1593784653056-143415610063?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    color: white;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 60, 0.6);
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-description {
    color: #666;
    max-width: 800px;
    font-size: 1.1rem;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    border: 1px solid #eee;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(78, 91, 242, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    border: 2px solid var(--primary-color);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-details p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
}

/* Success Page Styles */
.success-page-body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.success-title {
    color: #000;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.next-step-text {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.btn-call-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: transform 0.2s;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 400px) {
    .btn-call-primary {
        font-size: 1rem;
        padding: 12px 15px;
        gap: 5px;
    }
    .flag-icon {
        height: 24px;
        width: 24px;
        margin-right: 2px;
    }
}

.btn-call-primary:hover {
    transform: scale(1.02);
    color: white;
}

.flag-icon {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
    vertical-align: middle;
    border: 1px solid rgba(255,255,255,0.2);
}

.click-above-text {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
    font-weight: 700;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.activate-without-code-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-call-secondary {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-call-secondary:hover {
    background-color: #000;
    color: white;
}

.separator-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.separator-line {
    height: 1px;
    background-color: #eee;
    flex: 1;
}

.star-icon {
    color: #ffd700;
    margin: 0 15px;
}

/* Mobile View Logic */
.mobile-view {
    display: none;
}

.desktop-view {
    display: block;
}

@media (max-width: 768px) {
    .desktop-view, .desktop-view-wrapper {
        display: none !important;
    }

    .mobile-view {
        display: block !important;
        min-height: 100vh;
        background-color: #f0f2f5;
        padding: 20px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .activation-card {
        background: white;
        border-radius: 12px;
        padding: 30px 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .activation-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1b2e;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .activation-desc {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .activation-input {
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
        border: 2px solid #e1e1e1;
        border-radius: 8px;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: 2px;
        font-weight: 600;
        outline: none;
        transition: border-color 0.3s;
        text-transform: uppercase;
    }

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

    .activation-input::placeholder {
        letter-spacing: normal;
        text-transform: none;
        font-weight: 400;
        color: #aaa;
    }

    .btn-activate {
        display: block;
        width: 100%;
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 15px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 8px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: background-color 0.3s;
        margin-bottom: 30px;
        text-decoration: none;
        text-align: center;
    }

    .btn-activate:hover {
        background-color: #4043d8;
    }

    .activation-instructions {
        text-align: left;
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
    }

    .instructions-title {
        font-size: 1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .instructions-list {
        padding-left: 20px;
        margin: 0;
        color: #555;
        font-size: 0.9rem;
    }

    .instructions-list li {
        margin-bottom: 10px;
    }

    .instructions-list li:last-child {
        margin-bottom: 0;
    }

    .mobile-copyright {
        margin-top: 30px;
        font-size: 0.8rem;
        color: #999;
    }
}

/* Floating Elements */
.floating-phone-wrapper {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.phone-circle-btn {
    width: 70px;
    height: 70px;
    background-color: #00aaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.4);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 170, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 170, 255, 0); }
}

.phone-circle-btn:hover {
    color: white;
}

.close-icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #333;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tap-to-call-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tap-to-call-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-number {
    color: #28a745;
    font-weight: 700;
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background-color: #1a1b2e;
    height: 250px;
    position: relative;
    color: white;
}

.privacy-hero-title {
    font-size: 3rem;
    font-weight: 700;
    z-index: 1;
}

.privacy-content-section {
    background-color: #fff;
    padding: 60px 0;
}

.privacy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-heading:first-child {
    margin-top: 0;
}

.privacy-subheading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #666;
}

.privacy-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}
