/* ============================================
   LAUL GLOBAL - Main Stylesheet
   Brand Colors: #DD343A (Red), #000 (Black), #fff (White)
   Font: Roboto (300, 400)
   ============================================ */

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

:root {
    --primary-red: #DD343A;
    --primary-black: #000000;
    --primary-white: #ffffff;
    --text-gray: #555555;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

p {
    font-weight: 300;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo img {
    height: 46px;
    width: auto;
    border-radius: 4px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.nav-desktop > li {
    position: relative;
}

.nav-desktop > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-desktop > li > a:hover,
.nav-desktop > li.active > a {
    color: var(--primary-red);
}

.nav-desktop > li > a .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-desktop > li:hover > a .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 5px;
    border-top: 3px solid var(--primary-red);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-desktop > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 17px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    color: var(--primary-red);
    background: #fef7f7;
    padding-left: 22px;
}

/* Contact Button in Nav */
.nav-contact-btn > a {
    background: var(--primary-red) !important;
    border-radius: 24px !important;
    color: #fff !important;
    margin-left: 15px !important;
    padding: 10px 22px !important;
    height: 44px;
    display: flex !important;
    align-items: center !important;
}

.nav-contact-btn > a:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Mobile Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    margin-bottom: 20px;
    display: block;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

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

.mobile-submenu {
    list-style: none;
    background: #fafafa;
    border-radius: 5px;
    margin: 5px 0 10px 0;
    display: none;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li a {
    padding: 10px 15px;
    font-size: 14px;
    color: #777;
    border-bottom: none;
}

.mobile-submenu li a:hover {
    color: var(--primary-red);
}

.mobile-nav .has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding-top: 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Hero Full-Width Background Image Banner */
.hero-banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(0.75);
}

.hero-banner-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-banner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.2) 100%
    );
    display: flex;
    align-items: center;
}

.hero-banner-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.hero-banner-text h1 {
    font-size: clamp(28px, 4.5vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.hero-banner-text h1 span {
    display: block;
    color: var(--primary-red);
    font-weight: 400;
}

.hero-banner-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-text-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 40px;
}

.hero-text-block h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: #000;
    margin-bottom: 15px;
}

.hero-text-block h1 span {
    display: block;
    color: var(--primary-red);
}

.hero-text-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Build Relationships Section */
.build-rel-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.build-rel-left h2 {
    font-size: 28px;
    color: #000;
    margin-bottom: 10px;
}

.build-rel-left .subtitle {
    color: #777;
    font-size: 15px;
    margin-bottom: 15px;
}

.build-rel-left h3 {
    font-size: 26px;
    color: #000;
    margin-bottom: 20px;
}

.red-line {
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    margin: 15px 0;
    border-radius: 2px;
}

.build-rel-right p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* ============================================
   SLIDER / CAROUSEL SECTION
   ============================================ */
.slider-section {
    background: #111;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
    height: 400px;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.slide-content {
    max-width: 700px;
}

.slide-content p {
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
    font-weight: 300;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-red);
}

/* ============================================
   ICON BOXES SECTION
   ============================================ */
.icon-boxes-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.icon-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #DD343A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: #fff;
    font-size: 26px;
}

.icon-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    background: var(--light-gray);
    padding: 60px 30px;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #000;
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 25px;
    padding: 0 30px;
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.portfolio-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 20px;
    background: #f9f9f9;
}

.portfolio-card-title {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.portfolio-card-title a {
    color: #000;
}

.portfolio-card-title a:hover {
    color: var(--primary-red);
}

/* ============================================
   WHY WORK WITH US - SLIDER SECTION
   ============================================ */
.why-section {
    padding: 60px 30px;
    background: #fff;
}

.why-section .section-header {
    margin-bottom: 40px;
}

.why-slides-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.why-slide {
    min-width: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
}

.why-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.why-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.why-slide-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px;
}

.why-slide-content h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.why-slide-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.slide-btn {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: #b02020;
    color: #fff;
}

.why-prev,
.why-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    color: #fff;
    transition: background 0.3s ease;
}

.why-prev:hover,
.why-next:hover {
    background: #000;
}

.why-prev { left: 20px; }
.why-next { right: 20px; }

/* ============================================
   ABOUT / WHO WE ARE SECTION
   ============================================ */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    width: 320px;
    height: 320px;
    border-radius: 12px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-content ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.about-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-section {
    background: var(--light-gray);
    padding: 60px 30px;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
}

.contact-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 10px;
    display: block;
}

.contact-left p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.contact-form button:hover {
    background: #000;
}

/* Map image section */
.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
    text-align: center;
}

.map-section p {
    color: #555;
    margin-bottom: 20px;
}

.map-section img {
    width: 100%;
    border-radius: 12px;
}

/* ============================================
   BOTTOM CTA BANNER
   ============================================ */
.bottom-cta {
    background: #000;
    padding: 60px 30px;
}

.bottom-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.bottom-cta h2 {
    font-size: clamp(20px, 3vw, 32px);
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.bottom-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
#colophon {
    background: #111;
    color: #fff;
    padding: 60px 30px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(10);
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ============================================
   PAGE HERO BANNER (for inner pages)
   ============================================ */
.page-hero {
    padding-top: 80px;
    min-height: 350px;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-red);
    opacity: 0.05;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 30px;
}

.page-hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    color: #fff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: #000;
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .build-rel-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        width: 100%;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-inner .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-banner-wrap {
        height: 320px;
    }

    .hero-banner-text h1 {
        font-size: 26px;
    }

    .hero-banner-text p {
        font-size: 15px;
    }

    .nav-desktop {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .icon-boxes-section {
        grid-template-columns: 1fr;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bottom-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .why-slide-content {
        padding: 30px;
    }
    
    .why-slide-content h3 {
        font-size: 22px;
    }
    
    .hero-text-block {
        padding: 40px 20px 30px;
    }
    
    .build-rel-section {
        padding: 20px 20px 40px;
    }
    
    .map-section {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .portfolio-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 15px;
        height: 70px;
    }
    
    .site-logo img {
        height: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}
