/* 
   Wide Trip Cement Products LLC - Corporate Stylesheet
   Design System: Navy Blue (#173768), Crimson Red (#bd2231), Coral (#f25926)
   Typography: Montserrat (Loaded locally)
*/

/* --- FONTS --- */
@font-face {
    font-family: 'Montserrat';
    src: url('Document fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Document fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Document fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Document fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Document fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('Document fonts/Montserrat-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* --- VARIABLES --- */
:root {
    --primary: #173768;
    --primary-light: #1e4b8a;
    --primary-dark: #0f2445;
    --accent-red: #bd2231;
    --accent-orange: #f25926;
    --accent-orange-light: #f7845f;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0b1329;
    --bg-dark-card: #152244;
    --border-color: #e2e8f0;
    --border-dark: #1e2e5c;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(23, 55, 104, 0.08);
    --shadow-lg: 0 16px 32px rgba(23, 55, 104, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 50px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

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

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(15, 36, 69, 0.95);
    border-bottom: 1px solid var(--border-dark);
}

header.scrolled .logo-text,
header.scrolled .nav-link,
header.scrolled .nav-dropbtn {
    color: var(--bg-white);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-dropbtn:hover {
    color: var(--accent-orange);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-fast);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent-red));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-size: 10px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 4px;
    text-transform: uppercase;
}

header.scrolled .logo-text span {
    color: var(--border-color);
}

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

.nav-item {
    position: relative;
}

.nav-link, .nav-dropbtn {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    padding: 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-dropbtn:hover {
    color: var(--accent-red);
}

.nav-link.active {
    color: var(--accent-red);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-red);
    border-radius: var(--radius-round);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 12px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
}

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

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--accent-red);
    padding-left: 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

header.scrolled .hamburger span {
    background-color: var(--bg-white);
}

/* --- BANNER / HERO SECTION --- */
.hero-banner {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    margin-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 36, 69, 0.9), rgba(15, 36, 69, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-orange);
    letter-spacing: 3px;
    margin-bottom: 16px;
    animation: slideIn 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--bg-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: slideIn 1s ease-out;
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    animation: slideIn 1.2s ease-out;
}

.hero-btns {
    display: flex;
    gap: 16px;
    animation: slideIn 1.4s ease-out;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-red);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(189, 34, 49, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(242, 89, 38, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* --- SECTION GENERAL STYLE --- */
.section {
    padding: 100px 0;
}

.section-bg-alt {
    background-color: var(--bg-white);
}

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

.section-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    border-radius: var(--radius-round);
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
}

/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(45deg, var(--primary), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* --- CARDS & GRIDS --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(23, 55, 104, 0.15);
}

.card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.card-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.card:hover .card-link::after {
    transform: translateX(4px);
}

/* --- ABOUT SECTION SUMMARY --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-text-section h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.split-text-section p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 24px;
    height: 24px;
    background: rgba(189, 34, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.value-content p {
    font-size: 14px;
    margin-bottom: 0;
}

.split-img-section {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.split-img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- TESTIMONIAL / CEO QUOTE CARD --- */
.ceo-quote-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ceo-quote-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 200px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.ceo-quote-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--accent-orange);
    padding-left: 24px;
    font-style: italic;
}

.ceo-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.ceo-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 22px;
}

.ceo-details h4 {
    color: var(--bg-white);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ceo-details p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- PRODUCT DETAIL SPECIFIC --- */
.product-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    margin-top: 80px;
}

.product-hero-title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.product-intro-img {
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-intro-content h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-intro-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* SPECIFICATIONS TABLE */
.specs-section {
    margin-top: 60px;
}

.specs-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.table-wrapper {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.specs-table th {
    background-color: var(--primary);
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 16px 24px;
}

.specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 14px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.specs-table tr:hover {
    background-color: rgba(23, 55, 104, 0.03);
}

/* BLOCK TYPE GRID */
.block-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.block-card {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    box-shadow: 0 10px 30px -15px rgba(15, 36, 69, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.block-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -20px rgba(15, 36, 69, 0.12);
    border-color: rgba(23, 55, 104, 0.15);
}

.block-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(23, 55, 104, 0.03);
    position: absolute;
    top: 25px;
    right: 35px;
    line-height: 1;
    font-family: inherit;
    transition: all 0.4s ease;
}

.block-card:hover .block-num {
    color: rgba(242, 89, 38, 0.08);
    transform: scale(1.1);
}

.block-card h4 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.block-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

/* --- PAVERS LAYOUT & SHAPES --- */
.paver-shapes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.paver-shape-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.paver-shape-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.paver-shape-img {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.paver-shape-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.paver-shape-card:hover .paver-shape-img img {
    transform: scale(1.05);
}

.paver-shape-body {
    padding: 24px;
}

.paver-shape-body h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.paver-shape-body p {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 16px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.paver-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.paver-meta span {
    text-transform: uppercase;
}

.paver-meta .colors-indicator {
    color: var(--accent-orange);
}

/* --- GALLERY SYSTEM --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item::after {
    content: '+ View Pattern';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 36, 69, 0.8);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-item:hover::after {
    opacity: 1;
}

/* --- FLEET PAGE --- */
.fleet-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.fleet-intro-text h3 {
    font-size: 28px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.fleet-intro-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.fleet-intro-img {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fleet-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.safety-card {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 35px;
    box-shadow: 0 10px 30px -15px rgba(15, 36, 69, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -20px rgba(15, 36, 69, 0.12);
    border-color: rgba(242, 89, 38, 0.25);
}

.safety-icon {
    width: 54px;
    height: 54px;
    background: rgba(242, 89, 38, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.safety-card:hover .safety-icon {
    background: var(--accent-orange);
    color: var(--bg-white);
    transform: scale(1.05);
}

.safety-card h4 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.safety-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* --- CONTACT PAGE --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-box {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px;
    box-shadow: 0 10px 30px -15px rgba(15, 36, 69, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(15, 36, 69, 0.1);
    border-color: rgba(23, 55, 104, 0.12);
}

.contact-box-title {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 16px;
}

.contact-detail-text a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.contact-form-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.contact-form-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.form-control {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-fast);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(23, 55, 104, 0.08);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    margin-bottom: 20px;
}

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

.footer-link {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-link:hover {
    color: var(--accent-orange);
    padding-left: 4px;
}

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

.footer-contact-item {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    gap: 12px;
}

.footer-contact-icon {
    color: var(--accent-orange);
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 41, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 3px solid var(--bg-dark-card);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--bg-white);
    font-size: 32px;
    cursor: pointer;
    font-weight: 300;
}

.lightbox-caption {
    color: var(--bg-white);
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- KEYFRAMES --- */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .split-layout, .product-intro-grid, .fleet-intro, .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }
    
    .card-grid, .paver-shapes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        padding-left: 20px;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .card-grid, .paver-shapes, .block-types, .safety-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- LOGO IMAGE RULES (Real Brand Logo) --- */
.logo-img {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-fast);
}

header.scrolled .logo-img {
    padding: 4px 10px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

/* --- PREMIUM CREATIVE CONTACT CARD STYLES --- */
.contact-card-premium {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 40px;
    box-shadow: 0 15px 35px -15px rgba(15, 36, 69, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -20px rgba(15, 36, 69, 0.1);
}

.card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.primary-bar { background: var(--primary); }
.whatsapp-bar { background: #25d366; }

.office-tag {
    background: rgba(23, 55, 104, 0.06);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.contact-card-title {
    font-size: 22px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-card-intro {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.premium-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.p-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.p-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(23, 55, 104, 0.05);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.p-detail-item:hover .p-icon-box {
    background: var(--primary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.p-text-box {
    display: flex;
    flex-direction: column;
}

.p-text-box label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.p-text-box span, .p-text-box a {
    font-size: 14.5px;
    color: var(--primary-dark);
    font-weight: 600;
}

.p-text-box a:hover {
    color: var(--accent-red);
}

.p-text-box .sub-mail {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.whatsapp-premium-btn {
    background: #25d366;
    color: white;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-premium-btn:hover {
    background: #20ba5a;
    box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    color: white;
}


/* --- CREATIVE ABOUT US PAGE STYLES --- */
.about-hero-creative {
    position: relative;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    text-align: left;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 36, 69, 0.9), rgba(23, 55, 104, 0.75));
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.creative-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.creative-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--bg-white);
}

.creative-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.creative-about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.lead-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.fact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fact-icon {
    width: 40px;
    height: 40px;
    background: rgba(242, 89, 38, 0.08);
    color: var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.fact-text {
    display: flex;
    flex-direction: column;
}

.fact-text strong {
    font-size: 13.5px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.fact-text span {
    font-size: 12.5px;
    color: var(--text-muted);
}

.about-visual-showcase {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.showcase-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px -10px rgba(15, 36, 69, 0.15);
    height: 420px;
}

.showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 24px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px -10px rgba(15, 36, 69, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.creative-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.c-value-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 40px;
    box-shadow: 0 10px 30px -15px rgba(15, 36, 69, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -20px rgba(15, 36, 69, 0.12);
}

.c-value-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.c-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.red-accent { background: rgba(189,34,49,0.08); color: var(--accent-red); }
.blue-accent { background: rgba(23,55,104,0.08); color: var(--primary); }
.orange-accent { background: rgba(242,89,38,0.08); color: var(--accent-orange); }

.c-value-num {
    font-size: 16px;
    font-weight: 800;
    color: rgba(23, 55, 104, 0.08);
}

.c-value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.c-value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.ceo-message-block {
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 60px 80px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(15, 36, 69, 0.35);
}

.ceo-quote-graphic {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 160px;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}

.ceo-content-wrapper {
    position: relative;
    z-index: 2;
}

.ceo-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.ceo-message-block h3 {
    font-size: 28px;
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
}

.ceo-message-para {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    font-style: italic;
    border-left: 3px solid var(--accent-orange);
    padding-left: 24px;
}

.ceo-signature-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ceo-sig-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-sig-meta {
    display: flex;
    flex-direction: column;
}

.ceo-sig-meta strong {
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.ceo-sig-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
