/* AXISFORGE INSTALLATIONS LTD - Industrial & Bold Design */
/* Colors: Dark Grey (#2C2C2C), Charcoal (#1A1A1A), Orange (#FF6B35), Steel Grey (#4A5568) */

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

:root {
    --primary-dark: #1A1A1A;
    --secondary-dark: #2C2C2C;
    --accent-orange: #FF6B35;
    --steel-grey: #4A5568;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --text-light: #E0E0E0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--secondary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    background: var(--primary-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
}

.nav-cta {
    background: var(--accent-orange);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 3px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #e55a28;
}

.mobile-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ========== HERO SECTIONS ========== */
.hero-home {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 180px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 53, 0.03) 50px,
            rgba(255, 107, 53, 0.03) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 53, 0.03) 50px,
            rgba(255, 107, 53, 0.03) 51px
        );
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

.hero-home h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-home h1 .highlight {
    color: var(--accent-orange);
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat i {
    font-size: 3rem;
    color: var(--accent-orange);
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-light:hover {
    background: var(--light-grey);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--accent-orange);
}

.btn-outline:hover {
    background: var(--accent-orange);
}

/* ========== SECTION STYLING ========== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    margin: 1rem auto;
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
    background: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-box {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-left: 4px solid var(--accent-orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-box p {
    color: var(--steel-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* ========== WHY CHOOSE ========== */
.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content {
    text-align: left;
}

.why-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.why-content .underline {
    margin-left: 0;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--steel-grey);
    margin: 2rem 0;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-list i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-list strong {
    color: var(--primary-dark);
}

.why-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--steel-grey) 100%);
    border-left: 6px solid var(--accent-orange);
    position: relative;
    overflow: hidden;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(255, 107, 53, 0.1) 30px,
            rgba(255, 107, 53, 0.1) 31px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(255, 107, 53, 0.1) 30px,
            rgba(255, 107, 53, 0.1) 31px
        );
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 60px 2rem;
}

.cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 150px 2rem 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========== SERVICES DETAIL PAGE ========== */
.services-detail {
    background: var(--light-grey);
}

.service-section {
    background: var(--white);
    padding: 3rem;
    margin-bottom: 3rem;
    border-left: 6px solid var(--accent-orange);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 4rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1.1rem;
    color: var(--steel-grey);
    font-weight: normal;
    text-transform: none;
}

.service-desc {
    margin-bottom: 2rem;
    color: var(--steel-grey);
    line-height: 1.8;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 3px;
}

.service-item i {
    color: var(--accent-orange);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--steel-grey);
}

.price-range {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 1rem 2rem;
    text-align: center;
    margin-top: 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    background: var(--white);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-section {
    background: var(--light-grey);
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-section i {
    color: var(--accent-orange);
}

.values-section {
    margin: 5rem 0;
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--light-grey);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid var(--accent-orange);
}

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

.value-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--steel-grey);
    line-height: 1.7;
}

.company-info,
.why-new-company {
    margin: 5rem 0;
    text-align: center;
}

.company-info h2,
.why-new-company h2 {
    font-size: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.info-item strong {
    display: block;
    color: var(--accent-orange);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1rem;
}

.why-new-company {
    text-align: left;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    background: var(--light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--accent-orange);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--steel-grey);
    margin: 0.5rem 0;
}

.contact-card a {
    color: var(--steel-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--accent-orange);
}

.contact-card .note {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-top: 1rem;
    font-style: italic;
}

.service-areas-list {
    margin-top: 3rem;
    background: var(--white);
    padding: 2rem;
}

.service-areas-list h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-areas-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.service-areas-list li {
    padding: 0.5rem 0;
    color: var(--steel-grey);
}

.service-areas-list li::before {
    content: '▸';
    color: var(--accent-orange);
    margin-right: 0.5rem;
    font-weight: bold;
}

.contact-form-panel {
    background: var(--white);
    padding: 3rem;
}

.contact-form-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--steel-grey);
    margin-bottom: 2rem;
}

.quote-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E0E0E0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--steel-grey);
    margin-top: 1rem;
    font-style: italic;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
}

.footer-logo .logo-sub {
    font-size: 0.7rem;
}

.footer-col h4 {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-orange);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-list i {
    color: var(--accent-orange);
    margin-top: 0.3rem;
}

.company-no {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== FLOATING CALL BUTTON ========== */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
    transition: transform 0.3s;
    z-index: 999;
    text-decoration: none;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-home h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .image-frame {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-home h1 {
        font-size: 2rem;
    }

    .floating-call {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}