/* ====================================================
    4. HERO SECTION
    ==================================================== */
    
.hero {
    background: var(--hero-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button Styles */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ====================================================
    5. GENERAL LAYOUT & SECTIONS
    ==================================================== */
    #home {
    scroll-margin-top: 110px;
}

.single-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
}

.section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.section-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ====================================================
    6. SERVICES & ABOUT
    ==================================================== */
.services-grid,
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(3px);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-item {
    background-color: var(--bg-secondary);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* ====================================================
    7. PROJECTS SECTION
    ==================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.project-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ====================================================
    8. TEAM SECTION
    ==================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-img-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-secondary);
    border: 3px solid var(--primary-color);
}

.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ====================================================
    9. PRICING SECTION
    ==================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, var(--bg-secondary), var(--card-bg));
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price .price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.maintenance {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #27ae60;
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ====================================================
    10. ADDITIONAL DETAILS
    ==================================================== */
.additional-details-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
}

.additional-details-box h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-color);
}

.details-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.details-list li i {
    margin-top: 4px;
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* ====================================================
    11. CONTACT SECTION
    ==================================================== */
.contact-split {
    padding-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-wrapper, .calculator-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 25PX;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 24px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form,
.calculator-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form button,
.calculator-box > button {
    margin-top: auto; /* 🔥 pushes button down */
}


/* ENHANCED RADIO BUTTONS */
.radio-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.radio-list label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.radio-list label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.radio-list input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-list input[type="radio"]:checked + label {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

/* Calculator Styles */
.calc-group {
    margin-bottom: 25px;
}

.calc-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.button-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.calc-btn {
    padding: 14px 10px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    text-align: center;
    font-size: 0.95rem;
}

.calc-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.calc-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.feature-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.feature-btn {
    padding: 14px 8px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.feature-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.feature-btn i {
    font-size: 1.2rem;
}

/* Calculator Result */
.calc-result {
    margin: 0PX 0;
    padding: 0px;
    background: var(--bg-secondary);
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.result-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.result-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.result-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =========================
   MODERN COMPACT RADIO SERVICES
========================= */

.service-selection-list {
    background: rgba(0,0,0,0.035);
    padding: 12px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Hide checkbox */
.service-item input {
    display: none;
}

/* Card */
.service-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;          /* ⬅ smaller */
    min-height: 42px;            /* ⬅ compact height */
    border-radius: 999px;        /* ⬅ pill-style (modern) */
    border: 1.5px solid var(--border-color);
    background: var(--bg-color);
    font-size: 0.9rem;           /* ⬅ slightly smaller text */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    color: var(--text-color);
}

/* Hover */
.service-item label:hover {
    border-color: var(--primary-color);
    background: rgba(52, 152, 219, 0.05);
}

/* Active / Checked */
.service-item input:checked + label {
    background: linear-gradient(135deg, var(--primary-color), #4f8cff);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.22);
}

/* Mobile */
@media (max-width: 600px) {
    .service-selection-list {
        grid-template-columns: 1fr;
    }
}
