/* AVR Fasteners - Core Design System & Styling */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-mauve: #BC77C0;
    --color-mauve-hover: #a361a7;
    --color-mauve-light: rgba(188, 119, 192, 0.1);
    --color-navy: #0D1B3D;
    --color-navy-hover: #15295c;
    --color-navy-light: rgba(13, 27, 61, 0.05);
    --color-steel: #4D6B8A;
    --color-steel-light: rgba(77, 107, 138, 0.15);
    --color-light: #D5D9DF;
    --color-light-bg: #F5F7FA;
    --color-gunmetal: #5A6169;
    --color-white: #FFFFFF;
    --color-dark: #070E20;
    
    /* Layout & Shadows */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(7, 14, 32, 0.05);
    --shadow-md: 0 8px 16px rgba(7, 14, 32, 0.08);
    --shadow-lg: 0 16px 32px rgba(7, 14, 32, 0.12);
    --shadow-premium: 0 20px 40px rgba(13, 27, 61, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gunmetal);
    background-color: var(--color-light-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-steel);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-mauve);
}

/* Global Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: clamp(60px, 8vw, 100px) 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--color-mauve);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--color-navy);
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(13, 27, 61, 0.96);
    box-shadow: var(--shadow-md);
}

header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
    color: var(--color-mauve);
}

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

header.scrolled .logo-subtext {
    color: var(--color-light);
}

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

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

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

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--color-white);
    padding: 2px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtext {
    font-size: 10px;
    color: var(--color-steel);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-mauve);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-mauve);
}

.nav-cta {
    background-color: var(--color-mauve);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--color-mauve-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(188, 119, 192, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition);
}

header.scrolled .menu-toggle span {
    background-color: var(--color-white);
}

/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 61, 0.95) 0%, rgba(13, 27, 61, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(34px, 6vw, 56px);
    color: var(--color-white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title span {
    color: var(--color-mauve);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-mauve-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 119, 192, 0.4);
}

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

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

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

.btn-navy:hover {
    background-color: var(--color-navy-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 27, 61, 0.3);
}

/* Capabilities Strip styling */
.capabilities-strip {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    margin-bottom: 40px;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cap-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 3px solid transparent;
}

.cap-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mauve);
}

.cap-icon {
    font-size: 28px;
    color: var(--color-mauve);
    margin-bottom: 16px;
    background-color: var(--color-mauve-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.cap-card:hover .cap-icon {
    background-color: var(--color-mauve);
    color: var(--color-white);
}

.cap-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.cap-desc {
    font-size: 12px;
    color: var(--color-gunmetal);
    line-height: 1.4;
}

/* Trust Bar Styling */
.trust-bar {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 30px 0;
}

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

.trust-title {
    font-size: 18px;
    color: var(--color-white);
    font-weight: 700;
}

.trust-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
    color: var(--color-mauve);
    font-size: 18px;
}

/* Split Section layout (About Preview, Story etc) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-img-wrap {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

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

.split-img-wrap:hover .split-img {
    transform: scale(1.05);
}

.split-content .lead-text {
    font-size: 22px;
    color: var(--color-navy);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.split-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--color-gunmetal);
}

/* Products Section Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mauve);
}

.product-card-img-wrap {
    height: 200px;
    background-color: var(--color-white);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-light);
    overflow: hidden;
}

.product-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-card-info {
    padding: 20px;
}

.product-card-title {
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 13px;
    color: var(--color-gunmetal);
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-card-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-mauve);
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card-link:hover {
    color: var(--color-mauve-hover);
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.why-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.why-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--color-navy);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-mauve);
}

.why-icon {
    font-size: 32px;
    color: var(--color-mauve);
    margin-bottom: 24px;
}

.why-title {
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    color: var(--color-gunmetal);
    line-height: 1.6;
}

/* Timeline component for manufacturing process */
.timeline-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--color-light);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 4px solid var(--color-steel);
    z-index: 3;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    border-color: var(--color-mauve);
    background-color: var(--color-mauve);
    box-shadow: 0 0 12px rgba(188, 119, 192, 0.6);
}

.timeline-content {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-light);
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    border-color: var(--color-mauve-light);
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-mauve);
    margin-bottom: 8px;
    display: block;
}

.timeline-title {
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--color-gunmetal);
}

/* Industries Served Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industries-grid.five-col {
    grid-template-columns: repeat(5, 1fr);
}

.industry-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid var(--color-steel);
}

.industry-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-mauve);
}

.industry-icon {
    font-size: 24px;
    color: var(--color-mauve);
    background-color: var(--color-mauve-light);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
}

/* Factory Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(13, 27, 61, 0.95) 0%, rgba(13, 27, 61, 0) 100%);
    padding: 30px 20px 20px;
    color: var(--color-white);
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

/* Clients Grid */
.clients-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.85;
}

.client-logo-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-steel);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo-item:hover {
    opacity: 1;
    color: var(--color-navy);
}

/* Final CTA Section */
.final-cta {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

.final-cta-title {
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 800;
}

.final-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    font-size: 14px;
}

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

.footer-col-title {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-mauve);
}

.footer-about p {
    margin-top: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-link:hover {
    background-color: var(--color-mauve);
    transform: translateY(-3px);
}

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

.footer-link-item a:hover {
    color: var(--color-mauve);
    padding-left: 4px;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--color-mauve);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Interactive Product Page Layout (Spoke Layout) */
.product-spoke-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.spoke-sidebar {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.spoke-sidebar-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-steel);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-light);
}

.spoke-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spoke-item-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 3px solid transparent;
}

.spoke-item-btn:hover {
    background-color: var(--color-navy-light);
    color: var(--color-mauve);
}

.spoke-item-btn.active {
    background-color: var(--color-navy-light);
    color: var(--color-mauve);
    border-left-color: var(--color-mauve);
}

.spoke-item-btn i {
    font-size: 12px;
    opacity: 0.5;
    transition: var(--transition);
}

.spoke-item-btn.active i {
    opacity: 1;
    transform: translateX(4px);
}

.product-display-area {
    animation: fadeIn 0.5s ease;
}

.product-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-item-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-mauve);
}

.catalog-item-img-wrap {
    height: 140px;
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-item-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.catalog-item-card:hover .catalog-item-img {
    transform: scale(1.06);
}

.catalog-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.catalog-item-spec {
    font-size: 12px;
    color: var(--color-gunmetal);
}

/* Stats Counter Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-mauve);
    transition: var(--transition);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--color-gunmetal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Founders Card Section */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.founder-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    align-items: center;
}

.founder-portrait {
    width: 140px;
    height: 140px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.founder-info h3 {
    font-size: 20px;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 13px;
    color: var(--color-mauve);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.founder-bio {
    font-size: 14px;
    color: var(--color-gunmetal);
    line-height: 1.5;
}

/* Contact Details Page Styling */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

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

.contact-detail-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
}

.contact-detail-title {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-detail-title i {
    color: var(--color-mauve);
}

.contact-detail-card p {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-top: 10px;
}

.whatsapp-chat-btn:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.quote-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-mauve);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    margin-top: 10px;
    transition: var(--transition);
}

.quote-form-btn:hover {
    background-color: var(--color-mauve-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 119, 192, 0.3);
}

/* Contact Form styling */
.contact-form-wrap {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light);
}

.form-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-navy);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-mauve);
    box-shadow: 0 0 0 3px rgba(188, 119, 192, 0.15);
}

select.form-control {
    height: 48px;
}

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

/* Specifications Table */
.spec-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    text-align: left;
}

.spec-table th {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.spec-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-light);
    font-size: 15px;
}

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .cap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .capabilities-strip {
        margin-top: -40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-spoke-layout {
        grid-template-columns: 1fr;
    }
    
    .spoke-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    /* Fluid Grid Utilities for 1024px */
    .why-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid.five-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium viewport adjustments (992px) */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .product-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .why-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .industries-grid.five-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 1;
        text-align: left;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Responsive Navigation Menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-navy); /* Solid dark navy on mobile for consistent contrast */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        background-color: var(--color-navy);
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.85) !important; /* Always readable white/light color on mobile nav drawer */
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--color-mauve) !important;
    }
    
    /* Toggle animations */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Quality Table Block Stack on Mobile */
    .quality-table-wrap table, 
    .quality-table-wrap tbody, 
    .quality-table-wrap tr, 
    .quality-table-wrap td {
        display: block;
        width: 100% !important;
    }
    
    .quality-table-wrap tr {
        border-bottom: 1px solid var(--color-light);
    }
    
    .quality-table-wrap tr:last-child {
        border-bottom: none;
    }
    
    .quality-table-wrap td {
        padding: 12px 20px !important;
    }
    
    .quality-table-wrap td:first-child {
        font-weight: 700;
        padding-bottom: 4px !important;
    }
}

/* Small mobile & landscape adjustments (576px) */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cap-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid.five-col {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
}

/* Scroll-Driven Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay Utilities */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Flip Card Styles (Mission/Vision/Values) */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 320px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-light);
}

.flip-card-front {
    background-color: var(--color-white);
    color: var(--color-gunmetal);
    border-top: 4px solid var(--color-navy);
}

.flip-card-front-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flip-card-back {
    color: var(--color-white);
    transform: rotateY(180deg);
}

/* Custom back face backgrounds matching front accents */
.flip-card-back.mauve-bg {
    background-color: var(--color-navy);
    border-bottom: 4px solid var(--color-mauve);
}

.flip-card-back.steel-bg {
    background-color: var(--color-navy);
    border-bottom: 4px solid var(--color-steel);
}

.flip-card-back.navy-bg {
    background-color: var(--color-navy);
    border-bottom: 4px solid var(--color-mauve-hover);
}

.flip-back-title {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.flip-back-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.flip-back-list li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.flip-back-list li i {
    color: var(--color-mauve);
    font-size: 11px;
}

/* Products Slider / Carousel Layout */
.products-slider-container {
    position: relative;
    width: 100%;
}

.products-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 10px 5px 30px;
    -webkit-overflow-scrolling: touch;
}

.products-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.products-slider .product-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 280px;
}

@media (max-width: 992px) {
    .products-slider .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .products-slider .product-card {
        flex: 0 0 100%;
    }
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--color-light);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--color-mauve);
    color: var(--color-white);
    border-color: var(--color-mauve);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Infrastructure Redesign Custom Layouts */

/* 1. Asymmetrical Masonry Facility Grid */
.facility-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
    margin-top: 40px;
}

.facility-masonry-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.facility-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.facility-masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-masonry-item:hover img {
    transform: scale(1.06);
}

.facility-masonry-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.facility-masonry-item.wide {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .facility-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .facility-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .facility-masonry-item.large,
    .facility-masonry-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* 2. Manufacturing In Action Gallery */
.action-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.action-gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.action-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.action-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

@media (max-width: 992px) {
    .action-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .action-gallery {
        grid-template-columns: 1fr;
    }
}

/* 3. Testing Card Image Wrapper */
.why-card-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
}

.why-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.why-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-mauve-light);
}

/* 4. Standards Card */
.standard-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 35px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    border-top: 4px solid var(--color-navy);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.standard-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--color-mauve);
}

.standard-card h3 {
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.standard-card p {
    font-size: 12px;
    color: var(--color-gunmetal);
    line-height: 1.4;
    margin-bottom: 0;
}

/* 5. Quality Stage Cards */
.quality-stage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quality-stage-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.quality-stage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-mauve-light);
}

.quality-stage-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--color-light);
}

.quality-stage-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.quality-stage-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quality-stage-title {
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.quality-stage-desc {
    font-size: 13.5px;
    color: var(--color-gunmetal);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .quality-stage-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Contact Page Redesign */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-info-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-light);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-mauve-light);
}

.contact-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-card-icon {
    font-size: 20px;
    color: var(--color-mauve);
    width: 44px;
    height: 44px;
    background-color: var(--color-light-bg);
    border: 1px solid var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-title {
    font-size: 20px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0;
}

.contact-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-address {
    font-size: 15px;
    color: var(--color-gunmetal);
    line-height: 1.7;
    margin-bottom: 24px;
}

.office-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background-color: var(--color-light-bg);
    border-radius: var(--border-radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--color-light);
}

.hours-label {
    font-size: 12px;
    color: var(--color-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hours-value {
    font-size: 14px;
    color: var(--color-gunmetal);
}

.maps-btn {
    margin-top: auto;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
}

/* Contact Details Single Card (Right Side) */
.directory-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.directory-section-title {
    font-size: 14px;
    color: var(--color-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.directory-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.directory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px dashed var(--color-light);
    padding-bottom: 8px;
}

.directory-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.directory-label {
    font-size: 14px;
    color: var(--color-gunmetal);
    font-weight: 500;
}

.directory-val-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.directory-val {
    font-size: 14px;
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.directory-val:hover {
    color: var(--color-mauve);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--color-gunmetal);
    cursor: pointer;
    font-size: 13px;
    padding: 4px;
    opacity: 0.4;
    transition: var(--transition);
}

.copy-btn:hover {
    opacity: 0.9;
    color: var(--color-mauve);
    transform: scale(1.15);
}

.whatsapp-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background-color: #25D366;
    color: var(--color-white) !important;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    border: none;
    margin-top: 10px;
}

.whatsapp-btn-large:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(18, 140, 126, 0.35);
}

.directory-divider {
    height: 1px;
    background-color: var(--color-light);
    margin: 24px 0;
}

/* Full Width Quote Card */
.full-width-quote-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-light);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: var(--transition);
}

.full-width-quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-mauve-light);
}

.quote-card-left {
    flex: 1;
}

.quote-card-title {
    font-size: 22px;
    color: var(--color-navy);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-card-title i {
    color: var(--color-mauve);
}

.quote-card-desc {
    font-size: 14.5px;
    color: var(--color-gunmetal);
    line-height: 1.6;
    margin-bottom: 0;
}

.quote-card-right {
    flex-shrink: 0;
}

.quote-submit-btn {
    padding: 16px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Media Queries for Contact Redesign */
@media (max-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        padding: 30px;
    }
    
    .full-width-quote-card {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .quote-submit-btn {
        width: 100%;
        justify-content: center;
    }
}



