/* ═══════════════════════════════════════
   GeoTerra — Global Design System
   ═══════════════════════════════════════ */

:root {
    --geot-primary: #eb5c2f;
    --geot-dark: #040714;
    --geot-head: 'Barlow Condensed', sans-serif;
    --geot-body: 'DM Sans', sans-serif;
    --geot-container: 1200px;
    --geot-radius: 8px;
    --geot-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Premium Dark Theme (Default) */
    --geot-bg: #040714;
    --geot-card-bg: rgba(255, 255, 255, 0.03);
    --geot-text: #eeeeee;
    --geot-text-muted: #94a3b8;
    --geot-cream: #000000;
    --geot-border: rgba(255, 255, 255, 0.08);
    --geot-nav-bg: #000000;

    /* Premium Shadows & Effects */
    --geot-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --geot-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --geot-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --geot-shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    --geot-glow: 0 0 20px rgba(235, 92, 47, 0.3);

}

/* Dark Theme Overrides */
[data-geot-theme="dark"],
body.geot-dark-mode {
    --geot-bg: #040714;
    --geot-card-bg: rgba(255, 255, 255, 0.03);
    --geot-text: #eeeeee;
    --geot-text-muted: #94a3b8;
    --geot-cream: #000000;
    --geot-border: rgba(255, 255, 255, 0.08);
    --geot-nav-bg: #000000;

    --geot-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --geot-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --geot-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --geot-shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* If generated with modeDark, apply by default */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--geot-body);
    color: var(--geot-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--geot-bg);
    transition: background 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--geot-head);
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.geot-text-primary {
    color: var(--geot-primary);
}

.geot-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.geot-container {
    max-width: var(--geot-container);
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Section Header */
.geot-sec-head {
    margin-bottom: 48px;
}

.geot-sec-num {
    font-family: var(--geot-head);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--geot-primary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

/* Buttons */
.geot-btn-primary,
.geot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--geot-primary);
    color: #fff;
    font-family: var(--geot-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--geot-radius);
    transition: var(--geot-transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
}

.geot-btn-primary:hover {
    filter: brightness(1.15);
    transform: translateY(-3px);
    box-shadow: var(--geot-shadow-premium), var(--geot-glow);
}

.geot-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-family: var(--geot-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--geot-radius);
    transition: var(--geot-transition);
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
}

.geot-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Fade animation */
.geot-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.geot-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar ── */
.geot-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--geot-nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--geot-border);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.geot-navbar-scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(235, 92, 47, 0.25);
}

.geot-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.3s ease;
}

.geot-navbar-scrolled .geot-nav-inner {
    height: 70px;
}

.geot-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.geot-nav-brand img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.geot-navbar-scrolled .geot-nav-brand img {
    height: 48px;
}

.geot-nav-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--geot-primary);
}

.geot-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.geot-nav-links li {
    position: relative;
}

.geot-nav-links li a {
    font-family: var(--geot-head);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--geot-text);
    transition: var(--geot-transition);
    opacity: 0.8;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.geot-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--geot-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.geot-nav-links li a:hover {
    color: var(--geot-primary);
    opacity: 1;
}

.geot-nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.geot-nav-mobile-only {
    display: none;
}

.geot-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.geot-hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
}

.geot-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--geot-text);
    margin: 6px 0;
    transition: var(--geot-transition);
}



/* ── Hero ── */
.geot-home-badge {
    display: inline-block;
    background: rgba(235, 92, 47, 0.08);
    border: 1px solid rgba(235, 92, 47, 0.25);
    color: var(--geot-primary);
    font-family: var(--geot-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.geot-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--geot-dark) right center/cover no-repeat;
    position: relative;
    color: #fff;
    text-align: left;
    overflow: hidden;
    padding-top: 100px;
}

.geot-hero .geot-container {
    width: 100%;
}

/* Background subtle zoom animation */
.geot-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    animation: geotZoom 20s infinite alternate linear;
    z-index: 0;
}

@keyframes geotZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.geot-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #040714e0 35%, rgba(4, 7, 20, 0.5) 70%, transparent 100%),
        linear-gradient(to bottom, transparent 75%, #040714 100%);
    z-index: 1;
}

.geot-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
}

.geot-hero h1 {
    color: inherit;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.15;
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
}

.geot-hero p {
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: var(--geot-text-muted);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
}

.geot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    color: var(--geot-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(235, 92, 47, 0.1);
    animation: geotFloat 4s ease-in-out infinite;
}

@keyframes geotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.geot-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.geot-hero-buttons .geot-btn-primary i,
.geot-hero-buttons .geot-btn-ghost i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.geot-hero-buttons .geot-btn-primary:hover i,
.geot-hero-buttons .geot-btn-ghost:hover i {
    transform: translateX(4px);
}

/* ── Stats ── */
.geot-stats {
    background: #02040c;
    color: #fff;
    padding: 60px 0;
    border-bottom: 1px solid var(--geot-border);
}

.geot-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.geot-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 10px;
}

.geot-stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1.5px solid rgba(235, 92, 47, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--geot-primary);
    background: rgba(235, 92, 47, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.geot-stat-card:hover .geot-stat-icon-wrapper {
    background: var(--geot-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 92, 47, 0.25);
    border-color: var(--geot-primary);
}

.geot-stat-info {
    display: flex;
    flex-direction: column;
}

.geot-stat-num {
    font-family: var(--geot-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.geot-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--geot-text-muted);
    font-weight: 600;
}

/* ── Service Cards Premium ── */
.geot-sec-head-dual {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
}

.geot-sec-head-left {
    flex: 1.2;
}

.geot-sec-head-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.25;
    margin-top: 12px;
}

.geot-sec-head-right {
    flex: 0.8;
}

.geot-sec-head-right p {
    color: var(--geot-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.geot-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.geot-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--geot-radius);
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.geot-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--geot-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.geot-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--geot-shadow-premium), 0 10px 30px rgba(235, 92, 47, 0.1);
    border-color: rgba(235, 92, 47, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.geot-service-card:hover::before {
    transform: scaleX(1);
}

.geot-service-card i {
    font-size: 1.8rem;
    color: var(--geot-primary);
    background: rgba(235, 92, 47, 0.08);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(235, 92, 47, 0.2);
    margin-bottom: 28px;
    transition: all 0.4s ease;
}

.geot-service-card:hover i {
    background: var(--geot-primary);
    color: #fff;
    transform: translateY(-3px);
}

.geot-service-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
    transition: color 0.3s;
    font-weight: 700;
    color: #fff;
}

.geot-service-card:hover h3 {
    color: var(--geot-primary);
}

.geot-service-card p {
    color: var(--geot-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.geot-service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--geot-primary);
    font-weight: 700;
    font-family: var(--geot-head);
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 28px;
    letter-spacing: 0.05em;
    transition: var(--geot-transition);
}

.geot-service-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
    background: none !important;
    color: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
}

.geot-service-card:hover .geot-service-more-link {
    color: #fff;
}

.geot-service-card:hover .geot-service-more-link i {
    transform: translateX(4px);
}

.geot-sec-foot-actions {
    text-align: center;
    margin-top: 48px;
}

.geot-sec-foot-actions .geot-btn-ghost i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.geot-sec-foot-actions .geot-btn-ghost:hover i {
    transform: translateX(4px);
}

/* ── Project Cards Premium ── */
.geot-projects-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.geot-projects-head-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.25;
    margin-top: 12px;
}

.geot-projects-nav-arrows {
    display: flex;
    gap: 12px;
}

.geot-projects-nav-arrows button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--geot-transition);
}

.geot-projects-nav-arrows button:hover {
    border-color: var(--geot-primary);
    color: var(--geot-primary);
    background: rgba(235, 92, 47, 0.05);
}

.geot-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.geot-project-card {
    border-radius: var(--geot-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--geot-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--geot-card-bg);
}

.geot-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--geot-shadow-premium);
    border-color: rgba(235, 92, 47, 0.3);
}

.geot-project-img-wrapper {
    position: relative;
    overflow: hidden;
}

.geot-project-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.geot-project-card:hover img {
    transform: scale(1.06);
}

.geot-project-card-footer {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(4, 7, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    transition: var(--geot-transition);
}

.geot-project-card:hover .geot-project-card-footer {
    border-color: rgba(235, 92, 47, 0.3);
    background: rgba(4, 7, 20, 0.95);
}

.geot-project-card-footer-text h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--geot-body);
}

.geot-project-loc {
    color: var(--geot-text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.geot-project-loc i {
    color: var(--geot-primary);
}

.geot-project-card-footer-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--geot-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--geot-transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.geot-project-card:hover .geot-project-card-footer-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(235, 92, 47, 0.4);
}

/* ── Modal Premium ── */
.geot-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.geot-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.geot-modal-content {
    background-color: var(--geot-bg);
    margin: auto;
    padding: 0;
    border: 1px solid var(--geot-border);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.geot-modal.show .geot-modal-content {
    transform: translateY(0) scale(1);
}

.geot-modal-close {
    color: #fff;
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
}

.geot-modal-close:hover {
    background: var(--geot-primary);
}

.geot-modal-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .geot-modal-body {
        flex-direction: row;
    }

    .geot-modal-img-container {
        flex: 1.2;
        min-height: 400px;
    }

    .geot-modal-info {
        flex: 1;
        padding: 40px;
    }
}

.geot-modal-img-container {
    background: #000;
    position: relative;
}

#geot-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.geot-modal-info {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.geot-modal-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--geot-primary);
    line-height: 1.1;
}

.geot-modal-location {
    font-size: 1rem;
    color: var(--geot-text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#geot-modal-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--geot-text);
}

/* ── CTA ── */
.geot-cta {
    background: transparent;
    padding: 100px 0;
}

.geot-cta-box {
    background: linear-gradient(135deg, rgba(235, 92, 47, 0.04) 0%, rgba(4, 7, 20, 0.95) 100%), #02040c;
    border: 1px solid rgba(235, 92, 47, 0.15);
    border-radius: 12px;
    padding: 56px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--geot-shadow-premium), 0 10px 30px rgba(235, 92, 47, 0.05);
    position: relative;
    overflow: hidden;
}

.geot-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(var(--geot-primary) 1px, transparent 0), radial-gradient(var(--geot-primary) 1px, transparent 0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    z-index: 0;
    pointer-events: none;
}

.geot-cta-left {
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 1;
    flex: 1.2;
}

.geot-cta-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(235, 92, 47, 0.08);
    border: 1.5px solid rgba(235, 92, 47, 0.25);
    color: var(--geot-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(235, 92, 47, 0.1);
}

.geot-cta-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.geot-cta-text p {
    color: var(--geot-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.geot-cta-right {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    flex: 0.8;
    justify-content: flex-end;
}

.geot-cta-right .geot-btn-primary i,
.geot-cta-right .geot-btn-ghost i {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.geot-cta-right .geot-btn-primary:hover i,
.geot-cta-right .geot-btn-ghost:hover i {
    transform: translateX(4px);
}

/* ── Footer ── */
.geot-footer-main {
    background: var(--geot-cream);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 40px;
    border-top: 1px solid var(--geot-border);
    position: relative;
}

.geot-footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--geot-primary), transparent);
    opacity: 0.8;
}

.geot-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.geot-footer-brand p {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--geot-text-muted);
}

.geot-footer-logo-text {
    font-family: var(--geot-head);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
}

.geot-footer-main h4 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.geot-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.geot-footer-links li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.geot-footer-links li i {
    color: var(--geot-primary);
    width: 20px;
    text-align: center;
}

.geot-footer-links a {
    transition: var(--geot-transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.geot-footer-links a:hover {
    color: var(--geot-primary);
    transform: translateX(5px);
}

.geot-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.geot-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--geot-transition);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.geot-social-icons a:hover {
    background: var(--geot-primary);
    border-color: var(--geot-primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(235, 92, 47, 0.3);
}

.geot-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--geot-text-muted);
}

/* ── Blog Grid ── */
.geot-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.geot-blog-card {
    border-radius: var(--geot-radius);
    overflow: hidden;
    background: var(--geot-card-bg);
    border: 1px solid var(--geot-border);
    transition: all 0.3s ease;
    display: block;
}

.geot-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

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

.geot-blog-card-body {
    padding: 20px;
}

.geot-blog-date {
    font-size: 0.8rem;
    color: var(--geot-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.geot-blog-card h3 {
    margin: 8px 0;
    font-size: 1.1rem;
}

.geot-blog-card p {
    font-size: 0.9rem;
    color: var(--geot-text-muted);
}

/* ── About ── */
.geot-about-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.geot-about-visual {
    position: relative;
    z-index: 2;
}

.geot-about-img-wrapper {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--geot-shadow-premium);
}

.geot-about-img-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.geot-about-visual:hover img {
    transform: scale(1.04);
}

.geot-about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(4, 7, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(235, 92, 47, 0.3);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 5;
    animation: geotFloat 4s ease-in-out infinite;
}

.geot-exp-num {
    font-family: var(--geot-head);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--geot-primary);
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(235, 92, 47, 0.2);
}

.geot-exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 600;
}

.geot-about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.geot-about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 20px;
    color: #fff;
}

.geot-about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

.geot-about-content p {
    color: var(--geot-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.geot-about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

/* ── Contact ── */
.geot-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 100%;
}

.geot-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.geot-contact-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--geot-radius);
    transition: var(--geot-transition);
}

.geot-contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(235, 92, 47, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.geot-contact-item i {
    font-size: 1.5rem;
    color: var(--geot-primary);
    background: rgba(235, 92, 47, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235, 92, 47, 0.2);
    flex-shrink: 0;
    transition: all 0.3s;
}

.geot-contact-item:hover i {
    background: var(--geot-primary);
    color: #fff;
}

.geot-contact-item strong {
    font-family: var(--geot-head);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.geot-contact-item p {
    color: var(--geot-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.geot-contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--geot-radius);
    padding: 40px;
}

.geot-form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.geot-alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.geot-alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.geot-alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .geot-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--geot-nav-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1050;
    }

    .geot-nav-links.active {
        right: 0;
    }

    .geot-nav-links li a {
        font-size: 1.5rem;
    }

    .geot-hamburger {
        display: block;
    }

    .geot-nav-actions .geot-btn-primary {
        display: inline-flex;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .geot-nav-mobile-only {
        display: block;
        margin-top: 24px;
    }

    /* Hamburger Transform */
    .geot-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .geot-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .geot-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .geot-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .geot-services-grid {
        grid-template-columns: 1fr;
    }

    .geot-projects-grid {
        grid-template-columns: 1fr;
    }

    .geot-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .geot-about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .geot-sec-head-dual {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }

    .geot-projects-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .geot-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 30px;
    }

    .geot-cta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .geot-cta-right {
        justify-content: flex-start;
        width: 100%;
    }

    .geot-cta-right .geot-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .geot-hero-overlay {
        background: linear-gradient(to bottom, rgba(4, 7, 20, 0.9) 0%, rgba(4, 7, 20, 0.95) 100%);
    }

    .geot-stats-grid {
        grid-template-columns: 1fr;
    }

    .geot-footer-grid {
        grid-template-columns: 1fr;
    }

    .geot-about-grid {
        grid-template-columns: 1fr;
    }

    .geot-blog-grid {
        grid-template-columns: 1fr;
    }

    .geot-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .geot-hero-buttons .geot-btn {
        width: 100%;
    }

    .geot-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .geot-form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .geot-about-pillars {
        grid-template-columns: 1fr;
    }

    .geot-about-img-wrapper img {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .geot-nav-actions {
        gap: 12px;
    }

    .geot-nav-actions .geot-btn-primary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .geot-nav-brand img {
        height: 40px;
    }

    .geot-navbar-scrolled .geot-nav-brand img {
        height: 36px;
    }

    .geot-hamburger span {
        width: 24px;
    }
}

/* ═══════════════════════════════════════
   Premium Modules UI
   ═══════════════════════════════════════ */

/* ── Team ── */
.geot-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.geot-team-card {
    background: var(--geot-card-bg);
    border-radius: var(--geot-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--geot-border);
}

.geot-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.geot-team-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.geot-team-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.geot-team-card:hover .geot-team-img-wrapper img {
    transform: scale(1.05);
}

.geot-team-info {
    padding: 24px;
    position: relative;
    z-index: 2;
    background: inherit;
}

.geot-team-info h4 {
    margin: 0 0 4px;
    font-size: 1.3rem;
    color: var(--geot-text);
}

.geot-team-role {
    font-size: 0.9rem;
    color: var(--geot-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
}

/* ── Testimonials ── */
.geot-testimonials {
    background: var(--geot-cream);
}

.geot-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.geot-testimonial-card {
    background: var(--geot-card-bg);
    padding: 40px;
    border-radius: var(--geot-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid var(--geot-border);
}

.geot-testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--geot-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.geot-testimonial-quote::before {
    content: '\"';
    font-family: var(--geot-head);
    font-size: 4rem;
    color: var(--geot-primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.geot-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.geot-testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.geot-testimonial-author h5 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--geot-text);
}

.geot-testimonial-company {
    font-size: 0.85rem;
    color: var(--geot-text-muted);
}

/* ── Pricing ── */
.geot-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.geot-pricing-card {
    background: var(--geot-card-bg);
    padding: 48px 32px;
    border-radius: var(--geot-radius);
    text-align: center;
    border: 1px solid var(--geot-border);
    transition: all 0.3s ease;
    position: relative;
}

.geot-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.geot-featured-price {
    background: var(--geot-dark);
    color: #fff;
    transform: scale(1.05);
    border-color: var(--geot-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.geot-featured-price:hover {
    transform: scale(1.05) translateY(-8px);
}

.geot-price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--geot-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.geot-price-header h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: inherit;
}

.geot-price-header .geot-price {
    font-family: var(--geot-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--geot-primary);
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.geot-price-header .geot-price span {
    font-size: 1.25rem;
    margin-top: 8px;
    font-weight: 600;
    color: inherit;
    opacity: 0.7;
}

.geot-price-features {
    margin-bottom: 40px;
    text-align: left;
}

.geot-price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.geot-price-features li i.fa-check {
    color: var(--geot-primary);
}

.geot-price-features li i.fa-times {
    color: #f44336;
    opacity: 0.5;
}

/* ── Gallery ── */
.geot-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.geot-gallery-item {
    border-radius: var(--geot-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 320px;
}

.geot-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.geot-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}

.geot-gallery-item:hover img {
    transform: scale(1.1);
}

.geot-gallery-item:hover .geot-gallery-overlay {
    opacity: 1;
}

.geot-gallery-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.geot-gallery-item:hover .geot-gallery-overlay h4 {
    transform: translateY(0);
}

/* ── FAQ ── */
.geot-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.geot-faq-item {
    background: var(--geot-card-bg);
    border: 1px solid var(--geot-border);
    border-radius: var(--geot-radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.geot-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.geot-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.geot-faq-question h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--geot-text);
}

.geot-faq-question i {
    color: var(--geot-primary);
    transition: transform 0.3s ease;
}

.geot-faq-answer {
    padding: 0 24px 24px;
    display: none;
    color: var(--geot-text-muted);
    line-height: 1.6;
}

.geot-faq-item.active .geot-faq-question i {
    transform: rotate(180deg);
}

/* ── Careers Form ── */
.geot-careers-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--geot-card-bg);
    padding: 48px;
    border-radius: var(--geot-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--geot-border);
}

.geot-form-group {
    margin-bottom: 24px;
}

.geot-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--geot-text);
    font-size: 0.95rem;
}

.geot-form-group input,
.geot-form-group textarea,
.geot-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--geot-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--geot-text);
    background: var(--geot-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.geot-form-group input:focus,
.geot-form-group textarea:focus {
    outline: none;
    border-color: var(--geot-primary);
    box-shadow: 0 0 0 3px rgba(235, 92, 47, 0.1);
    background: var(--geot-bg);
}

.geot-form-group input[type="file"] {
    padding: 10px;
    background: var(--geot-bg);
}

@media (max-width: 992px) {
    .geot-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .geot-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .geot-featured-price {
        transform: none;
    }

    .geot-featured-price:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .geot-team-grid {
        grid-template-columns: 1fr;
    }

    .geot-careers-container {
        padding: 32px 24px;
    }
}