/* HERO SECTION */
.geo-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* BACKGROUND IMAGE */
.geo-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/3.jpg') center/cover no-repeat;
    z-index: 1;
}

/* DARK OVERLAY */
.geo-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

/* CONTENT */
.geo-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 20px;
}

/* TAGLINE */
.geo-tagline {
    color: #ff6a00;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* MAIN HEADING */
.geo-content h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* SUBTEXT */
.geo-sub {
    color: #ddd;
    font-size: 24px;
    margin-bottom: 25px;
}

/* FEATURES */
.geo-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* TEXT */
.geo-item span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}

/* 🔥 IMPROVED DOT (THIS is what you actually wanted) */
.geo-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}
/* CONTAINER SYSTEM */
.geo-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.geo-container.narrow {
    max-width: 900px;
}

/* TYPO */
.geo-heading {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffffff;
}

.geo-heading.center {
    text-align: center;
}

.geo-intro {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* USP GRID */
.geo-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.geo-usp-card {
    background: #111;
    padding: 30px;
    border-radius: 6px;
}

.geo-usp-card h3 span {
    color: #ff6a00;
    font-weight: 800;
}

.geo-usp-card ul {
    list-style: none;
    padding: 0;
}

.geo-usp-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    color: #9ca3af;
}

.geo-usp-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6a00;
}
.geo-method-section {
    margin-top: 80px;
}
/* METHOD GRID */
.geo-method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 30px;
    gap: 40px;
    text-align: center;
}

.geo-method-item h3 {
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke: 2px #ff6a00;
}

.geo-method-item h4 {
    margin: 10px 0;
    font-size: 20px;
}

.geo-method-item p {
    color: #9ca3af;
    font-size: 14px;
}
/* SECTION */
.geo-benefits-section {
    position: relative;
    padding: 80px 20px;
    background: #0b0b0b;
}

/* LIST */
.geo-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

/* ITEM */
.geo-benefit-item {
    position: relative;
    height: 90px;
    overflow: hidden;
}

/* BG IMAGE */
.geo-benefit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.geo-benefit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.85)
    );
}

/* CONTENT */
.geo-benefit-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    backdrop-filter: blur(4px);
}

.geo-benefit-content p {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    flex: 1;

    text-shadow:
        0 0 8px rgba(0,0,0,0.8),
        0 0 15px rgba(0,0,0,0.6);
}

/* ICON (circle + line fake) */
.geo-icon {
    width: 40px;
    height: 40px;
    border: 3px solid #ff6a00;
    border-radius: 50%;
    position: relative;
}

.geo-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: #ff6a00;
    top: 50%;
    transform: translateY(-50%);
}

/* LEFT LINE */
.geo-icon.left::after {
    right: -30px;
}

/* RIGHT LINE */
.geo-icon.right::after {
    left: -30px;
}
/* SECTION */
.geo-compare-section {
    position: relative;
    padding: 30px 20px;
    background: #0b0b0b; /* keep it clean, no messy bg */
}

/* BOX */
.geo-compare-box {
    max-width: 1100px;
    margin: auto;
    background: #ffffff; /* SOLID — no opacity nonsense */
    padding: 50px 40px;
    border-radius: 10px;
}

/* HEADING */
.geo-compare-box h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

.geo-compare-box h2 span {
    color: #ff6a00;
}

/* TABLE */
.geo-compare-table {
    width: 100%;
    border-collapse: collapse;
}

/* HEAD */
.geo-compare-table th {
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    border: 1px solid #ddd;
    background: #f5f5f5;
}

/* BODY */
.geo-compare-table td {
    padding: 16px;
    font-size: 15px;
    color: #444;
    border: 1px solid #ddd;
}

/* FIRST COLUMN (labels) */
.geo-compare-table td:first-child {
    font-weight: 700;
    color: #222;
}
/* HOVER */
.geo-compare-table tr:hover {
    background: #ffffff;
}
.geo-compare-box h2 {
    position: relative;
}

/* underline */
.geo-compare-box h2::after {
    content: "";
    display: block;
    width: 420px;
    height: 3px;
    background: #ff6a00;
    margin: 10px auto 0;
}
/* SECTION */
.geo-faq-section {
    position: relative;
    padding: 30px 20px;
    background: #0b0b0b;
}

/* LIST */
.geo-faq-list {
    margin-top: 40px;
}

/* ITEM */
.geo-faq-item {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.geo-faq-question {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 0;
    cursor: pointer;
}
.geo-faq-question p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}
.geo-faq-icon {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    width: 20px;
    text-align: center;
}
/* ANSWER */
.geo-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 0 10px;
}

/* ACTIVE */
.geo-faq-item.active .geo-faq-answer {
    max-height: 200px;
    padding: 10px;
}

.geo-faq-item.active .geo-faq-icon {
    transform: rotate(45deg);
}

/* CTA */
.geo-faq-cta {
    text-align: center;
    margin-top: 60px;
}

.geo-faq-cta p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.geo-faq-cta h3 {
    font-size: 26px;
    margin-bottom: 20px;
}
.geo-faq-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
    padding: 14px 32px;

    border-radius: 999px;
    font-size: 15px;

    border: 1.5px solid #ff7a00;

    white-space: nowrap;
}
@media (max-width: 1024px) {

    /* CONTAINER */
    .geo-container {
        max-width: 95%;
        padding: 0 20px;
    }

    /* HERO */
    .geo-content h1 {
        font-size: 40px;
    }

    .geo-sub {
        font-size: 20px;
    }

    .geo-tagline {
        font-size: 18px;
    }

    .geo-item span {
        font-size: 18px;
    }

    /* HEADINGS */
    .geo-heading {
        font-size: 30px;
        margin-bottom: 30px;
    }

    /* USP GRID (KEEP 3 COL) */
    .geo-usp-grid {
        gap: 20px;
    }

    .geo-usp-card {
        padding: 25px;
    }

    /* METHOD GRID (KEEP 2 COL) */
    .geo-method-grid {
        gap: 30px;
    }

    .geo-method-item h3 {
        font-size: 50px;
    }

    .geo-method-item h4 {
        font-size: 18px;
    }

    .geo-method-item p {
        font-size: 13px;
    }

    /* BENEFIT STRIPS */
    .geo-benefit-item {
        height: 80px;
    }

    .geo-benefit-content {
        padding: 0 15px;
    }

    .geo-benefit-content p {
        font-size: 16px;
    }

    .geo-icon {
        width: 34px;
        height: 34px;
    }

    /* COMPARE SECTION */
    .geo-compare-box {
        padding: 35px 25px;
    }

    .geo-compare-box h2 {
        font-size: 28px;
    }

    .geo-compare-box h2::after {
        width: 260px;
    }

    .geo-compare-table th,
    .geo-compare-table td {
        padding: 12px;
        font-size: 14px;
    }

    /* FAQ */
    .geo-faq-question {
        padding: 16px 0;
        gap: 12px;
    }

    .geo-faq-question p {
        font-size: 15px;
    }

    .geo-faq-icon {
        font-size: 18px;
        width: 18px;
    }

    .geo-faq-answer {
        font-size: 13px;
    }

    /* CTA */
    .geo-faq-cta {
        margin-top: 50px;
    }

    .geo-faq-cta h3 {
        font-size: 22px;
    }

    .geo-btn {
        padding: 9px 20px;
        font-size: 14px;
    }

}
@media (max-width: 768px) {

    /* CONTAINER */
    .geo-container {
        padding: 0 15px;
    }

    /* HERO */
    .geo-content h1 {
        font-size: 32px;
    }

    .geo-sub {
        font-size: 16px;
    }

    .geo-tagline {
        font-size: 16px;
    }

    .geo-item span {
        font-size: 14px;
    }

    .geo-features {
        gap: 10px;
    }

    /* HEADINGS */
    .geo-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* USP GRID → STACK */
    .geo-usp-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .geo-usp-card {
        padding: 20px;
    }

    /* METHOD GRID → STACK */
    .geo-method-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .geo-method-item h3 {
        font-size: 40px;
    }

    .geo-method-item h4 {
        font-size: 18px;
    }

    .geo-method-item p {
        font-size: 13px;
    }

    /* BENEFIT STRIPS */
    .geo-benefit-item {
        height: auto;
        padding: 15px 0;
    }

    .geo-benefit-content {
        flex-direction: row;
        padding: 0 10px;
    }

    .geo-benefit-content p {
        font-size: 14px;
        padding: 5px 10px;
    }

    .geo-icon {
        width: 28px;
        height: 28px;
    }

    /* COMPARE TABLE */
    .geo-compare-box {
        padding: 20px 15px;
    }

    .geo-compare-box h2 {
        font-size: 22px;
    }

    .geo-compare-box h2::after {
        width: 180px;
    }

    .geo-compare-table th,
    .geo-compare-table td {
        font-size: 12px;
        padding: 10px;
    }

    /* FAQ */
    .geo-faq-question {
        padding: 14px 0;
        gap: 10px;
    }

    .geo-faq-question p {
        font-size: 14px;
    }

    .geo-faq-icon {
        font-size: 16px;
        width: 16px;
    }

    .geo-faq-answer {
        font-size: 13px;
    }

    /* CTA */
    .geo-faq-cta {
        margin-top: 40px;
    }

    .geo-faq-cta h3 {
        font-size: 20px;
    }

    .geo-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

}
@media (max-width: 480px) {

    /* CONTAINER */
    .geo-container {
        padding: 0 12px;
    }

    /* HERO */
    .geo-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .geo-sub {
        font-size: 14px;
    }

    .geo-tagline {
        font-size: 14px;
    }

    .geo-item span {
        font-size: 13px;
    }

    .geo-features {
        gap: 6px;
    }

    /* HEADINGS */
    .geo-heading {
        font-size: 22px;
        margin-bottom: 18px;
    }

    /* USP */
    .geo-usp-card {
        padding: 15px;
    }

    .geo-usp-card h3 {
        font-size: 16px;
    }

    .geo-usp-card li {
        font-size: 13px;
    }

    /* METHOD */
    .geo-method-grid {
        gap: 18px;
    }

    .geo-method-item h3 {
        font-size: 32px;
    }

    .geo-method-item h4 {
        font-size: 16px;
    }

    .geo-method-item p {
        font-size: 12px;
    }

    /* BENEFITS STRIP */
    .geo-benefit-item {
        padding: 12px 0;
    }

    .geo-benefit-content {
        padding: 0 8px;
    }

    .geo-benefit-content p {
        font-size: 13px;
        padding: 4px 8px;
    }

    .geo-icon {
        width: 24px;
        height: 24px;
    }

    /* COMPARE */
    .geo-compare-box {
        padding: 15px 10px;
    }

    .geo-compare-box h2 {
        font-size: 20px;
    }

    .geo-compare-box h2::after {
        width: 120px;
    }

    .geo-compare-table th,
    .geo-compare-table td {
        font-size: 11px;
        padding: 8px;
    }

    /* FAQ */
    .geo-faq-question {
        padding: 12px 0;
        gap: 8px;
    }

    .geo-faq-question p {
        font-size: 13px;
    }

    .geo-faq-icon {
        font-size: 14px;
        width: 14px;
    }

    .geo-faq-answer {
        font-size: 12px;
    }

    /* CTA */
    .geo-faq-cta {
        margin-top: 30px;
    }

    .geo-faq-cta p {
        font-size: 13px;
    }

    .geo-faq-cta h3 {
        font-size: 18px;
    }

    .geo-btn {
        padding: 7px 16px;
        font-size: 12px;
    }

}