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

:root {
    /* Color Palette */
    --primary: #024a30;          /* Deep Forest Green */
    --primary-light: #067248;    /* Medium Green */
    --primary-glow: rgba(2, 74, 48, 0.15);
    --secondary: #d97706;        /* Golden Amber */
    --secondary-hover: #b45309;  /* Darker Amber */
    --dark: #0f172a;             /* Slate 900 */
    --dark-muted: #1e293b;       /* Slate 800 */
    --light: #f8fafc;            /* Slate 50 */
    --border-color: #e2e8f0;     /* Slate 200 */
    --text-main: #334155;        /* Slate 700 */
    --text-light: #64748b;       /* Slate 500 */
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Styling */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* CSS Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography Helpers */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 12px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}
.section-title.center {
    text-align: center;
}
.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 3rem;
}
.subtitle.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Layout Containers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

/* Header & Navigation */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    fill: var(--primary);
    transition: var(--transition);
}

.logo-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo-icon {
    width: 38px;
    height: 38px;
}

header.scrolled .logo-icon-img {
    width: 38px;
    height: 38px;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

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

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

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

/* Quote Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

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

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

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

/* Mobile Nav Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    z-index: 1100;
}

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

/* Mobile Navigation Open */
.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Footer Section */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 20px;
    border-top: 5px solid var(--secondary);
}

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

.footer-about .logo-title {
    color: var(--white);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 15px;
}

/* Home Hero Banner */
.hero {
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 40px);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background-color: #0c1511;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 40, 25, 0.82) 0%, rgba(10, 20, 35, 0.55) 60%, rgba(5, 15, 25, 0.35) 100%);
    z-index: 1;
}

.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Stats Counter Row */
.stats-row {
    background-color: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

/* Services Grid (Home) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.service-card-link:hover {
    color: var(--secondary);
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #01281a 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* About Us Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feat-item {
    display: flex;
    gap: 12px;
}

.about-feat-item i {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-top: 4px;
}

.about-feat-item h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.about-feat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-img-box {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

.about-img-box::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 8px solid var(--secondary);
    border-radius: var(--border-radius);
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Vision / Mission / Values Cards */
.mission-vision-values {
    background-color: var(--light);
}

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

.mvv-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.mvv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Tabbed Layout for Services Page */
.tabs-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.tabs-menu {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 18px 25px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-muted);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.tab-btn:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.tab-btn i {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: rgba(2, 74, 48, 0.03);
    color: var(--primary);
    border-left-color: var(--primary);
}

.tab-btn.active i, .tab-btn:hover i {
    color: var(--primary);
}

.tab-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-content h2 i {
    color: var(--primary);
}

.tab-content-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.detail-card {
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    border-left: 4px solid var(--secondary);
}

.detail-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.detail-card ul {
    list-style: disc;
    margin-left: 18px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Resources Page Layout */
.resource-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.resource-tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    background-color: var(--light);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
}

.resource-tab-btn.active, .resource-tab-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.resource-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.resource-pane.active {
    display: block;
}

/* Specs Tables */
.spec-table-container {
    overflow-x: auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

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

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

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

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

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

/* Hazardous Class badges */
.haz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.haz-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.haz-badge {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Haz Colors */
.haz-c1 { background-color: #ef4444; } /* Explosives - Red */
.haz-c2 { background-color: #f97316; } /* Gases - Orange */
.haz-c3 { background-color: #facc15; color: #1e293b; } /* Liquids - Yellow */
.haz-c4 { background-color: #ca8a04; } /* Solids - Gold */
.haz-c5 { background-color: #3b82f6; } /* Oxidizers - Blue */
.haz-c6 { background-color: #a855f7; } /* Toxic - Purple */
.haz-c7 { background-color: #10b981; } /* Radio - Green */
.haz-c8 { background-color: #ec4899; } /* Corrosive - Pink */
.haz-c9 { background-color: #64748b; } /* Misc - Slate */
.haz-cother { background-color: #334155; }

.haz-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.haz-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Incoterms Layout */
.inco-intro {
    background-color: var(--primary-glow);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
}

/* Currency Calculator Widget */
.calc-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.calc-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

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

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

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

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.calc-selects {
    display: flex;
    gap: 15px;
}

.calc-selects .form-group {
    flex: 1;
}

.calc-result-box {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    font-family: var(--font-heading);
}

.calc-result-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 5px;
}

.calc-rate-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Enquiry Form Steps Wizard */
.enquiry-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.enquiry-steps {
    display: flex;
    background-color: var(--light);
    border-bottom: 1px solid var(--border-color);
}

.step-indicator {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    border-bottom: 3px solid transparent;
}

.step-indicator.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.step-indicator.completed {
    color: var(--primary-light);
}

.enquiry-form-body {
    padding: 40px;
}

.form-step-pane {
    display: none;
}

.form-step-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-step-title {
    font-size: 1.35rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.alert-msg {
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    display: none;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

/* Contacts Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary);
}

.office-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-details li {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.office-details i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

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

.contact-form-box h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

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

/* Page Header component for subpages */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #012417 100%);
    color: var(--white);
    padding: calc(var(--header-height) + 50px) 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 10.5%);
    background-size: 20px 20px;
}

.page-header h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Policy layouts */
.policy-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.policy-card h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.policy-card h2 i {
    font-size: 1.5rem;
}

.policy-card p {
    margin-bottom: 20px;
}

.policy-card ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-card li {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tabs-container {
        grid-template-columns: 1fr;
    }
    
    .tabs-menu {
        position: static;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        flex: 0 0 auto;
        width: auto;
        padding: 15px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .tab-btn:not(:last-child) {
        border-bottom: 3px solid transparent;
    }
    
    .tab-btn.active, .tab-btn:hover {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
        gap: 20px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-btn {
        width: 100%;
        margin-top: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -30px;
        padding: 20px;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .about-img-box {
        order: -1;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .resource-tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .resource-tab-btn {
        text-align: center;
    }
    
    .enquiry-form-body {
        padding: 20px;
    }
    
    .calc-wrapper {
        padding: 25px;
    }
    
    .calc-selects {
        flex-direction: column;
        gap: 0;
    }
}

/* Hardening & Extraction Utility Classes */
.btn-hero-outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-hero-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.why-card {
    text-align: center;
    padding: 20px;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-logo-svg {
    fill: none;
    stroke: var(--white);
    width: 35px;
    height: 35px;
}

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

.p-mb {
    margin-bottom: 1.5rem;
}

.about-highlight {
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 6px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.about-highlight h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.about-highlight p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-highlight ul {
    list-style: none;
}

.about-highlight li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    align-items: center;
}

.about-highlight li i {
    color: var(--primary);
}

.objectives-intro {
    margin-bottom: 40px;
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.objective-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.objective-icon {
    background-color: var(--primary-glow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.objective-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.objective-desc {
    font-size: 0.95rem;
    color: var(--text-light);
}

.checklist-box {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
}

.checklist-box-title {
    margin-bottom: 10px;
}

.checklist-grid {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.checklist-grid li i {
    color: var(--secondary);
    margin-right: 8px;
}

.ocean-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ocean-card-styled {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-top: 4px solid var(--primary);
}

.ocean-card-styled h4 {
    margin-bottom: 10px;
}

.ocean-card-styled p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.air-highlight {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary);
    margin-bottom: 30px;
}

.air-highlight h4 {
    margin-bottom: 15px;
}

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

.air-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.air-list li i {
    color: var(--primary);
    margin-top: 5px;
}

.land-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.land-title {
    font-size: 1.25rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 15px;
    color: var(--primary);
}

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

.land-list li {
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    align-items: center;
}

.land-list li i {
    color: var(--secondary);
}

.land-list-offered li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.land-list-offered li i {
    color: var(--primary);
    font-weight: bold;
    margin-top: 3px;
}

.wh-intro-grid {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.wh-feature-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    text-align: center;
}

.wh-feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.wh-feature-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.wh-feature-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.project-highlight {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
}

.project-highlight h4 {
    margin-bottom: 12px;
}

.project-list {
    list-style-type: disc;
    margin-left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.95rem;
}

.project-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.consultancy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.consultancy-card {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-top: 4px solid var(--secondary);
}

.consultancy-card h4 {
    margin-bottom: 12px;
    color: var(--primary);
}

.consultancy-list {
    list-style-type: none;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.8;
}

.consultancy-list li i {
    font-size: 0.6rem;
    color: var(--secondary);
    margin-right: 8px;
}

.allied-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.allied-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.allied-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}

.allied-list li i {
    color: var(--secondary);
    margin-top: 3px;
}

.cross-trade-intro {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cross-trade-list {
    list-style: none;
}

.cross-trade-list li {
    margin-bottom: 6px;
    font-size: 0.85rem;
    display: flex;
    gap: 10px;
}

.cross-trade-list li i {
    color: var(--primary);
    margin-top: 3px;
}

.resources-section-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.resources-section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

.resources-h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.mb-30 {
    margin-bottom: 30px;
}

.calc-info {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 25px;
}

.required-star {
    color: #ef4444;
}

.textarea-resizable {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.maps-section {
    background-color: var(--light);
    padding: 50px 0;
}

.map-container-box {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 400px;
    background-color: var(--white);
}

.map-placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 20px;
}

.map-address {
    max-width: 400px;
    margin-top: 8px;
}

.btn-map {
    margin-top: 20px;
}

.step-num {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.form-nav-btns.justify-end {
    justify-content: flex-end;
}

/* Turnstile Verification Styling */
.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    min-height: 65px;
}
