/* ============================================
   INFRAPOL - CSS Styles
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C0392B;
    --dark-navy: #1a1a2e;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gold: #f39c12;
}

html {
    scroll-behavior: smooth;
}

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

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

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar span {
    color: #666;
    white-space: nowrap;
}

.top-bar i {
    color: var(--primary-red);
    margin-right: 5px;
    font-size: 0.75rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 117px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    opacity: 0.9;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    background: #2b3e5f;
    padding: 12px 50px 12px 30px;
    position: relative;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 8px 22px;
    display: block;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-menu li:not(.nav-cta) a:hover {
    color: #ddd;
}

.nav-menu li.nav-cta {
    margin-left: 5px;
}

.nav-menu li.nav-cta a {
    background: #b33a2f;
    color: var(--white);
    padding: 10px 28px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-menu li.nav-cta a:hover {
    background: #972e25;
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--dark-navy);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 357px;
    height: 40vh;
    max-height: 500px;
    background: url('/images/baner.jpg') center/cover no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--white);
    text-align: left;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 60px 0 60px;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #b33a2f;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 35px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #972e25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 58, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

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

.btn-outline {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
}

.btn-outline:hover {
    background: var(--dark-navy);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-services {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.about-services h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 25px;
    font-weight: 700;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.services-list i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 60px;
    font-weight: 800;
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(192, 57, 43, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600') center/cover;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.85);
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.contact-box {
    background: var(--white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-red);
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p,
.footer-right p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-red);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--dark-navy);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.company-address {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.contact-detail {
    font-size: 1.1rem;
    margin: 10px 0;
}

.contact-detail a {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-red);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 10px;
}

.btn-large i {
    margin-right: 10px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .top-bar {
        display: none;
    }

    .nav-menu-wrapper {
        position: fixed;
        left: -100%;
        top: 95px;
        width: 100%;
        transition: 0.3s;
        clip-path: none;
        padding: 20px;
        background: #2b3e5f;
    }

    .nav-menu-wrapper.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .nav-menu li.nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-menu li.nav-cta a {
        clip-path: none;
        border-radius: 5px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle span {
        background: var(--dark-navy);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 280px;
        height: 35vh;
        max-height: 350px;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        padding: 30px;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.4);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 78px;
    }

    .top-bar {
        font-size: 0.75rem;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .nav-menu-wrapper {
        padding: 15px;
        background: #2b3e5f;
    }

    .hero {
        min-height: 240px;
        height: 30vh;
        max-height: 300px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item > div {
        align-items: center;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }
}
.hero-banner-bg{
background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)), url('/images/baner.jpg');
background-size:cover;
background-position:center;
height:420px;
width:100%;
}

.hero{
background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)), url('/images/baner.jpg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
padding:140px 0;
color:white;
text-align:center;
}
