/* --- RESET & GLOBAL STYLES --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #121212;
    --bg-darker: #0B0B0B;
    --bg-card: #181818;

    --text-main: #E0E0E0;
    --text-light: #FFFFFF;
    --text-muted: #888888;

    --copper: #B87333;
    --copper-dark: #8A5A2B;

    --electric-blue: #00E5FF;
    --blue-muted: #00838F;

    --font-heading: 'Orbitron', 'Oswald', sans-serif;
    --font-subheading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', 'Montserrat', sans-serif;

    --container-width: 1300px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Utility Class: Highlights --- */
.highlight-copper {
    color: var(--copper) !important;
}

.highlight-blue,
.highlight-cyan {
    color: var(--electric-blue) !important;
}

.tagline {
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--copper);
    margin-bottom: 10px;
}

.tagline-cyan {
    color: var(--electric-blue) !important;
}

.tagline-orange {
    color: var(--copper) !important;
}

/* --- BUTTONS & GLOBAL ARROW ANIMATIONS --- */
.btn {
    display: inline-block;
    font-family: var(--font-subheading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-arrow,
.btn span,
.btn-full span,
.btn-full-small span,
.btn-secondary-light span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.btn:hover .btn-arrow,
.btn:hover span,
.btn-full:hover span,
.btn-full-small:hover span,
.btn-secondary-light:hover span,
button[type="submit"]:hover span,
.form-area .btn-primary:hover span,
.footer-col.projects .btn:hover span {
    transform: translateX(6px);
}

.btn-primary {
    background-color: var(--copper);
    color: #fff;
    border: 1px solid var(--copper);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--copper);
}

.btn-secondary {
    background-color: #333333;
    color: #fff;
    border: 1px solid #333333;
}

.btn-secondary:hover {
    background-color: transparent;
    border-color: #fff;
}

.btn-secondary-light {
    background-color: #fff;
    color: #121212;
    border: 1px solid #fff;
}

.btn-secondary-light:hover {
    background-color: transparent;
    color: #fff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-full-small {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-secondary-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* --- HEADER & MOBILE BURGER NAVIGATION --- */
.main-header {
    background-color: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 80px;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.header-logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    z-index: 1001;
}

.main-nav {
    margin-left: 140px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-subheading);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.main-nav a:hover {
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    font-family: var(--font-subheading);
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Hamburger Toggle Button (Hidden by default on desktop) */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1002;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Burger Animation to 'X' when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 160px 0;
    background-image:
        linear-gradient(180deg, rgba(11, 11, 11, 0.75) 0%, rgba(11, 11, 11, 0.4) 50%, rgba(18, 18, 18, 0.85) 85%, var(--bg-dark) 100%),
        url('./images/homeimg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.hero-tagline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.pill-icon {
    width: 14px;
    height: 14px;
    color: var(--electric-blue);
}

.hero-tagline-pill span {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-blue);
    letter-spacing: 1.5px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: #A0A0A0;
    margin-bottom: 36px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: var(--copper);
    border: 1px solid var(--copper);
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
}

.hero .btn-primary:hover {
    background-color: transparent;
    color: var(--copper);
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: #FFFFFF;
}

.hero-trust-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777777;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: #777777;
}

/* --- SERVICES SECTION --- */
.services {
    padding: 80px 0;
    background-color: #0d0d0d;
    text-align: left;
}

.services .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services .tagline {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

#services h2,
#services .section-title,
#services .section-heading,
.services .section-title,
.services .section-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services .section-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin-bottom: 55px;
    line-height: 1.5;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #151515;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease-in-out;
    cursor: pointer;
    height: auto;
}

.service-card:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 4px;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box svg,
.icon-box i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.box-copper {
    background-color: rgba(184, 115, 51, 0.15);
    color: var(--copper);
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.box-cyan {
    background-color: rgba(0, 229, 255, 0.15);
    color: var(--electric-blue);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.service-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-transform: none;
    transition: color 0.35s ease-in-out;
}

.service-card h3.title-copper {
    color: var(--copper);
}

.service-card h3.title-cyan {
    color: var(--electric-blue);
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Accordion Summary Styling */
.service-accordion summary {
    cursor: pointer;
    list-style: none;
    user-select: none;
    margin-top: 15px;
    display: inline-block;
}

.service-accordion summary::-webkit-details-marker {
    display: none;
}

.service-accordion summary .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-accordion[open] summary .arrow {
    transform: rotate(90deg);
}

.service-accordion[open] summary .toggle-text::after {
    content: " LESS";
}

.service-accordion:not([open]) summary .toggle-text::after {
    content: " MORE";
}

.service-accordion summary .toggle-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.accordion-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.4s ease forwards;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.accordion-content li {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
}

.accordion-content li svg {
    width: 16px;
    height: 16px;
    color: var(--electric-blue);
    flex-shrink: 0;
}

.btn-card-cta {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.learn-more {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.copper-text {
    color: var(--copper);
}

.cyan-text {
    color: var(--electric-blue);
}

.service-card.hover-copper:hover {
    transform: translateY(-6px);
    border-color: var(--copper);
    box-shadow: 0 10px 40px -10px rgba(184, 115, 51, 0.35), 0 0 20px rgba(184, 115, 51, 0.15);
}

.service-card.hover-copper:hover h3 {
    color: var(--copper);
}

.service-card.hover-cyan:hover {
    transform: translateY(-6px);
    border-color: var(--electric-blue);
    box-shadow: 0 10px 40px -10px rgba(0, 229, 255, 0.35), 0 0 20px rgba(0, 229, 255, 0.15);
}

.service-card.hover-cyan:hover h3 {
    color: var(--electric-blue);
}

.service-card:hover .learn-more {
    transform: translateX(6px);
}

/* --- DIVIDER LINES --- */
.copper-divider {
    height: 1px;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, var(--copper) 50%, transparent 100%);
    opacity: 0.75;
}

.cyan-divider {
    height: 1px;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, var(--electric-blue) 50%, transparent 100%);
    opacity: 0.75;
}

/* --- PARTNERSHIPS SECTION --- */
.partnerships {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.partnership-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.image-area {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.partnership-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-top-left-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 2px;
}

.exp-text {
    font-family: var(--font-subheading);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.partnerships .tagline {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.partnerships .section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.partnerships .section-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 620px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
}

.partnership-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.partner-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.partner-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.partner-info h4 {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.partner-info p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* --- THE VES DIFFERENCE SECTION --- */
.pricing-overview {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.pricing-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.pricing-overview .tagline {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pricing-overview .section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.pricing-overview .section-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 580px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.differentiation-card {
    background-color: #151515;
    padding: 32px 28px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease-in-out;
}

.differentiation-card:focus-visible {
    outline: 2px solid var(--electric-blue);
    outline-offset: 4px;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: inline-block;
}

.copper-border {
    border: 1px solid var(--copper);
    color: var(--copper);
    background-color: rgba(184, 115, 51, 0.1);
}

.cyan-border {
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    background-color: rgba(0, 229, 255, 0.1);
}

.differentiation-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.differentiation-card p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.differentiation-card.hover-copper:hover {
    transform: translateY(-6px);
    border-color: var(--copper);
    box-shadow: 0 10px 30px -10px rgba(184, 115, 51, 0.25);
}

.differentiation-card.hover-cyan:hover {
    transform: translateY(-6px);
    border-color: var(--electric-blue);
    box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.25);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--copper);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-content .section-heading {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.about-lead strong {
    color: var(--copper);
}

.about-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.about-quote-box {
    border-left: 3px solid var(--copper);
    padding-left: 20px;
    margin-bottom: 35px;
    font-style: italic;
    color: #cccccc;
    font-size: 0.95rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 700;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-3px);
    background: rgba(0, 162, 255, 0.02);
}

.pillar-icon {
    background: rgba(212, 118, 38, 0.1);
    border: 1px solid rgba(212, 118, 38, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--copper);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: rgba(0, 162, 255, 0.1);
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar-info h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.pillar-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- GET IN TOUCH / CONTACT SECTION --- */
.get-in-touch {
    background-image: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.85) 100%), url('./images/containers.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #ffffff;
}

.git-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.get-in-touch .tagline,
.git-info .tagline {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 12px;
    text-transform: uppercase;
}

#contact h2,
#contact .git-info h2,
#contact .section-heading,
.git-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #FFFFFF !important;
}

.git-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.person-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.person-card .name {
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.person-card .title {
    font-size: 0.85rem;
    color: #888888;
    margin: 0;
}

.person-icon,
.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.person-icon i,
.contact-icon i,
.person-icon svg,
.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-links-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: #ffffff;
}

.service-area-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    max-width: 420px;
}

.area-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 5px;
    font-weight: 600;
}

.area-main {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.area-sub {
    font-size: 0.85rem;
    color: #888888;
}

.form-area {
    background: rgba(18, 18, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.quote-form h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.form-sub-text {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #aaaaaa;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #0d0d0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--copper);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

.cloudflare-captcha {
    margin: 15px 0 20px 0;
}

.cf-success-img {
    max-width: 200px;
    height: auto;
    display: block;
}

.form-disclosure {
    font-size: 0.75rem;
    color: #666666;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--bg-darker);
    padding: 80px 0 0;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--copper);
    margin-bottom: 22px;
    letter-spacing: 1px;
}

.footer-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
}

.footer-col.about p,
.footer-col.projects p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #a0a0a0;
}

.footer-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.footer-contact-item:hover {
    color: var(--electric-blue);
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--copper);
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #888888;
    transition: all 0.25s ease;
}

.social-icons a svg {
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    background-color: var(--copper);
    color: #ffffff;
    border-color: var(--copper);
}

.footer-col.links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col.links a {
    font-size: 0.9rem;
    color: #a0a0a0;
    transition: color 0.25s ease;
}

.footer-col.links a:hover {
    color: var(--electric-blue);
}

.footer-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-cta-stack .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.footer-bottom {
    background-color: #070707;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.825rem;
    color: #666666;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.designer-credit {
    color: #666666;
}

/* --- RESPONSIVE MEDIA QUERIES & MOBILE OPTIMIZATIONS --- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3.2rem !important;
    }

    h2.section-title,
    #services h2,
    .pricing-overview .section-title,
    .partnerships .section-title {
        font-size: 2.6rem !important;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-container,
    .git-container,
    .partnership-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-area {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .header-container {
        padding: 0 20px;
    }

    .footer-bottom-container {
        padding: 0 24px;
    }

    /* Enable Mobile Burger Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        margin-left: 0;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(11, 11, 11, 0.92); /* Keeps the transparent blur style you like */
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 20px;
        transition: left 0.35s ease-in-out;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 22px; 
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .main-nav a {
        font-size: 1.15rem;
        display: block;
        padding: 6px 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 0 15px;
    }

    .footer-bottom-container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        letter-spacing: 1px;
    }

    .services-grid,
    .partnership-grid,
    .pricing-cards-grid,
    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-area {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero {
        padding: 120px 0 80px 0;
    }

    .services,
    .partnerships,
    .pricing-overview,
    .get-in-touch,
    .about-section {
        padding: 60px 0;
    }
}

/* --- MOBILE FIXES --- */

/* 1. Fix mobile browser auto-zoom on inputs & passwords */
input, select, textarea {
    font-size: 16px !important;
}

/* 2. Prevent Admin Quote Box Overflow Clipping on Mobile & Center Restricted Login Box */
.admin-quote-wrapper, .quote-preview-container, .restricted-wrapper, .login-container-wrapper, body.login-page {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.restricted-card, .login-card, .admin-login-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 30px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 3. Mobile Menu Toggle Button Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #f3f4f6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 4. Responsive Mobile Rules for Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Animate burger menu to an X icon when tapped */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}

@media (max-width: 992px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative; /* Acts as the anchor for absolute centering */
    }

    /* 1. Logo on the far left */
    .header-logo {
        position: static;
        transform: none;
        height: 50px;
        width: auto;
        order: 1;
        z-index: 2;
    }

    /* 2. Absolute center of the entire header */
    .header-actions {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); /* Pulls it back by 50% for true centering */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 3px;
        order: 2;
        margin: 0;
        z-index: 2;
    }

    /* --- UPDATED PHONE NUMBER & QUOTE BUTTON SIZING (DUPLICATE QUERY OVERRIDE) --- */
    .header-actions .phone-link {
        font-size: 0.65rem; /* Decreased size */
        white-space: nowrap;
        display: block;
        width: 100%;
        text-align: center;
    }

    .header-actions .btn {
        padding: 4px 8px; /* Decreased padding */
        font-size: 0.6rem; /* Decreased font size */
        white-space: nowrap;
        display: inline-block;
        margin: 0 auto;
    }

    /* 3. Burger menu on the far right */
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        position: static;
        transform: none;
        z-index: 2;
    }

    /* Full-screen transparent blurred dropdown menu */
    .main-nav {
        margin-left: 0;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(11, 11, 11, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 20px;
        transition: left 0.35s ease-in-out;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 22px; 
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .main-nav a {
        font-size: 1.15rem;
        display: block;
        padding: 6px 0;
    }
}

/* Perfectly fit the Comprehensive heading on mobile screens */
@media screen and (max-width: 768px) {
    #services .section-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px !important;
    }
}

/* FORCE HERO SECTION TO THE LEFT */
section#home.hero {
    text-align: left !important;
}

section#home .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

section#home .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

section#home .hero-actions {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-left: 0 !important;
}