:root {
    --primary-navy: #001f3f;
    --navy-hover: #002855;
    --secondary-teal: #00bcd4;
    --teal-hover: #00acc1;
    --accent-gold: #ff9500;
    --gold-hover: #e68600;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --charcoal: #333333;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition-smooth: all 0.3s ease-out;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background-color: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary-navy); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: var(--primary-navy); transition: var(--transition-smooth); }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--secondary-teal) !important; }
.text-light-grey { color: var(--light-grey) !important; }
.bg-light { background-color: var(--light-grey); }
.bg-navy { background-color: var(--primary-navy); }
.bg-navy-hover:hover { background-color: var(--primary-navy) !important; color: white !important; border-color: var(--primary-navy) !important;}
.font-bold { font-weight: 700; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.rounded-lg { border-radius: 12px; }
.rounded-image { border-radius: 8px; }
.w-100 { width: 100%; }
.border-top-teal { border-top: 4px solid var(--secondary-teal); }
.d-none-mobile { display: none; }
@media(min-width: 768px) { .d-none-mobile { display: inline-block; } }

/* Buttons */
.btn { display: inline-block; padding: 8px 20px; border-radius: 8px; font-weight: 600; text-align: center; cursor: pointer; transition: var(--transition-smooth); border: none; font-family: var(--font-body); font-size: 14px; }
.btn-large { padding: 12px 24px; font-size: 16px; }
.btn-primary { background-color: var(--secondary-teal); color: var(--white); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-primary:hover { background-color: var(--teal-hover); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); color: white; }
.btn-gold { background-color: var(--accent-gold); color: var(--white); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-gold:hover { background-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); color: white; }
.btn-outline-teal { background-color: transparent; border: 2px solid var(--secondary-teal); color: var(--secondary-teal); }
.btn-outline-teal:hover { background-color: var(--secondary-teal); color: var(--white); }

/* Typography */
.section-title { font-size: 32px; margin-bottom: 15px; color: var(--primary-navy); }
.section-subtitle { font-size: 18px; color: var(--charcoal); margin-bottom: 40px; font-weight: 400; }
@media (min-width: 768px) { .section-title { font-size: 42px; } }
section { padding: 80px 0; }
@media (min-width: 768px) { section { padding: 100px 0; } }
.hero-slider, .hero-slider section { padding: 0 !important; }

/* WordPress admin bar compatibility */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Header & Nav */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--white); transition: var(--transition-smooth); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.1); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.site-header.scrolled { padding: 5px 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-frame { background: white; padding: 5px; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border: 2px solid var(--secondary-teal); overflow: hidden; }
.site-branding img.emfot-logo { max-height: 35px; width: auto; }
.footer-branding img.emfot-logo { max-height: 60px; width: auto; background: white; padding: 5px; border-radius: 4px; }
.logo { display:flex; align-items:center;}
.main-navigation ul { list-style: none; display: flex; gap: 25px; }
.main-navigation a { color: var(--primary-navy); font-weight: 600; font-size: 14px; position: relative; }
.main-navigation a:hover { color: var(--secondary-teal); }
.main-navigation a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--secondary-teal); transition: var(--transition-smooth); }
.main-navigation a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 15px; }
.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 5px; }
.hamburger { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--primary-navy); transition: var(--transition-smooth); }
@media(max-width: 991px) {
    .main-navigation { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 20px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: var(--transition-smooth); z-index: -1; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .main-navigation.toggled { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-navigation ul { flex-direction: column; gap: 15px; text-align: center; }
    .menu-toggle { display: block; }
    .menu-toggle.active .hamburger:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .hamburger:nth-child(2) { opacity: 0; }
    .menu-toggle.active .hamburger:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hero Section */
.hero-section { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 0; margin-top: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,31,63,0.85) 0%, rgba(0,31,63,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content h1 { color: var(--white); font-size: 40px; margin-bottom: 20px; }
.hero-content p { color: var(--light-grey); font-size: 18px; margin-bottom: 40px; max-width: 600px; }
.hero-ctas { display: flex; gap: 20px; }
@media(max-width: 768px) { .hero-content h1 { font-size: 32px; } .hero-ctas { flex-direction: column; } .hero-ctas .btn { width: 100%; } }
@media(min-width: 992px) { .hero-content h1 { font-size: 56px; } }

/* Services Section */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
@media(min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: var(--transition-smooth); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-bottom-color: var(--secondary-teal); }
.service-icon { font-size: 48px; color: var(--secondary-teal); margin-bottom: 20px; transition: var(--transition-smooth); }
.service-card:hover .service-icon { color: var(--primary-navy); transform: scale(1.1); }
.service-title { font-size: 22px; margin-bottom: 15px; }
.service-desc { color: #555; margin-bottom: 25px; line-height: 1.6; }
.service-link { color: var(--secondary-teal); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; }
.service-link .arrow { margin-left: 5px; transition: var(--transition-smooth); }
.service-card:hover .service-link .arrow { transform: translateX(5px); }

/* About Us Section */
.about-container { display: grid; gap: 50px; align-items: center; }
@media(min-width: 992px) { .about-container { grid-template-columns: 1fr 1fr; } }
.about-image img { width: 100%; object-fit: cover; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.stat-box { background: var(--light-grey); padding: 20px 15px; border-radius: 8px; text-align: center; border-left: 3px solid var(--secondary-teal); }
.stat-number { display: block; font-size: 28px; font-weight: 800; color: var(--primary-navy); font-family: var(--font-heading); margin-bottom: 5px; }
.stat-label { font-size: 14px; font-weight: 600; color: #555; }
@media(max-width: 576px) { .stats-grid { grid-template-columns: 1fr; } }

/* Compliance Section */
.compliance-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media(min-width: 992px) { .compliance-grid { grid-template-columns: repeat(4, 1fr); } }
.badge-card { background: var(--white); padding: 30px 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: var(--transition-smooth); display: flex; flex-direction: column; align-items: center; }
.badge-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.badge-icon { width: 60px; height: 60px; background: var(--light-grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--secondary-teal); margin-bottom: 15px; }
.badge-card h4 { font-size: 16px; margin: 0; }

/* Contact Section */
.contact-section { background: var(--primary-navy); position: relative; }
.contact-grid { display: grid; gap: 50px; }
@media(min-width: 992px) { .contact-grid { grid-template-columns: 3fr 2fr; align-items: center; } }
.contact-form-box { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px 20px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); font-size: 16px; color: var(--charcoal); transition: var(--transition-smooth); background: #fdfdfd; }
.form-control:focus { outline: none; border-color: var(--secondary-teal); box-shadow: 0 0 0 3px rgba(0,188,212,0.1); background: var(--white); }

/* Form Responses & Alerts */
.form-response { display: none; padding: 12px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; animation: fadeIn 0.4s ease-out; }
.alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-info-box { padding: 20px; }
.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-icon { font-size: 32px; }
.info-item h4 { color: var(--white); font-size: 18px; margin-bottom: 5px; }
.info-item p { color: var(--light-grey); }

/* Footer — single merged definition, mobile-first */
.site-footer { background: var(--primary-navy); padding: 60px 0 0; color: var(--white); }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media(min-width: 768px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 992px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-branding p { color: rgba(255,255,255,0.7); margin: 20px 0; }
.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--secondary-teal); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s ease; }
.footer-col ul li a:hover, .footer-col a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--secondary-teal); font-size: 14px; font-weight: 700; }
.social-icon:hover { background: var(--secondary-teal); color: var(--white); transform: translateY(-3px); }
.footer-bottom { padding: 20px 0; background: rgba(0,0,0,0.2); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }

/* Page Banners */
.page-banner { position: relative; height: 50vh; min-height: 350px; max-height: 500px; display: flex; align-items: center; background-size: cover; background-position: center; background-repeat: no-repeat; margin-top: 60px; }
.page-banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,31,63,0.9) 0%, rgba(0,31,63,0.6) 100%); z-index: 1; }
.page-banner-content { position: relative; z-index: 2; max-width: 800px; }
.page-banner-content h1 { color: var(--white); font-size: 42px; margin-bottom: 15px; }
.page-banner-content p { color: var(--light-grey); font-size: 18px; max-width: 600px; }

.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; padding: 0 !important; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; z-index: 1; transform: translateX(100%); transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1); will-change: transform; }
.hero-slide.active { transform: translateX(0); z-index: 2; }
.hero-slide.slide-out { transform: translateX(-100%); z-index: 1; }
.hero-slide.slide-from-left { transform: translateX(-100%); }
.hero-slide.slide-out-right { transform: translateX(100%); }
/* Hero badge label */
.hero-badge { display: inline-block; background: var(--accent-gold); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
/* Slider dots */
.hero-slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; }
.slider-dot.active { background: var(--accent-gold); width: 28px; border-radius: 5px; border-color: var(--accent-gold); }
.slider-dot:hover { background: rgba(255,255,255,0.8); }
/* Slider arrows */
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.4); color: var(--white); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(6px); }
.slider-arrow:hover { background: var(--accent-gold); border-color: var(--accent-gold); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 30px; }
.slider-next { right: 30px; }
/* Slide counter */
.slider-counter { position: absolute; bottom: 32px; right: 40px; z-index: 10; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.slider-counter .counter-current { color: var(--accent-gold); font-size: 18px; }
@media(max-width: 768px) { .slider-arrow { display: none !important; } .slider-counter { display: none !important; } }

/* Compliance Logos - Bigger and More Defined */
.compliance-logo { max-height: 120px; width: auto; object-fit: contain; transition: all 0.3s ease; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.compliance-logo:hover { transform: scale(1.1); filter: drop-shadow(0 8px 12px rgba(0,0,0,0.2)); }
.badge-card.compliance-badge { background: var(--white); padding: 30px 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; border: 2px solid #eee; }
.badge-card.compliance-badge:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); border-color: var(--secondary-teal); }
.badge-icon.large-icon { width: auto; height: auto; background: transparent; border-radius: 0; margin-bottom: 20px; }
.compliance-detail-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media(min-width: 768px) { .compliance-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 992px) { .compliance-detail-grid { grid-template-columns: repeat(3, 1fr); } }

/* Content Sections */
.content-card { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 30px; }
.content-card h3 { color: var(--primary-navy); margin-bottom: 20px; font-size: 24px; }
.content-card p { color: #555; line-height: 1.8; margin-bottom: 15px; }
.certification-detail { background: var(--white); padding: 30px; border-radius: 12px; border-left: 4px solid var(--secondary-teal); margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.certification-detail h4 { color: var(--primary-navy); font-size: 20px; margin-bottom: 10px; }
.certification-detail h5 { color: var(--secondary-teal); font-size: 16px; margin-bottom: 15px; }
.certification-detail p { color: #666; font-size: 15px; line-height: 1.7; }
.certification-detail ul { margin-top: 15px; padding-left: 20px; }
.certification-detail li { margin-bottom: 8px; color: #555; font-size: 14px; }

/* Image Background Sections */
.bg-image-section { background-size: cover; background-position: center; position: relative; }
.bg-image-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,31,63,0.85); }
.bg-image-section .container { position: relative; z-index: 2; }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; }
.feature-box { background: var(--white); padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; border-bottom: 4px solid transparent; }
.feature-box:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); border-bottom-color: var(--secondary-teal); }
.feature-box i { font-size: 36px; color: var(--secondary-teal); margin-bottom: 15px; }
.feature-box h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary-navy); }
.feature-box p { font-size: 14px; color: #666; }

/* Team Stats */
.team-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.stat-item { text-align: center; padding: 30px 20px; background: var(--white); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.stat-item i { font-size: 40px; color: var(--secondary-teal); margin-bottom: 15px; }
.stat-item .number { font-size: 36px; font-weight: 800; color: var(--primary-navy); display: block; }
.stat-item .label { font-size: 14px; color: #666; }

/* Why Choose Us / Values */
.value-card { background: var(--white); padding: 30px; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; border-top: 4px solid transparent; }
.value-card:hover { transform: translateY(-5px); border-top-color: var(--secondary-teal); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.value-card i { font-size: 40px; color: var(--secondary-teal); margin-bottom: 15px; }
.value-card h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary-navy); }
.value-card p { font-size: 14px; color: #666; }
.values-grid-custom { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 40px; }

/* Enhanced Mobile Responsiveness */
@media(max-width: 991px) {
    .page-banner { height: 40vh; min-height: 280px; }
    .page-banner-content h1 { font-size: 32px; }
    .hero-slide .hero-content h1 { font-size: 32px; }
}

@media(max-width: 768px) {
    .page-banner { height: 35vh; min-height: 250px; margin-top: 50px; }
    .page-banner-content h1 { font-size: 26px; }
    .page-banner-content p { font-size: 15px; }
    .hero-slider { min-height: 500px; }
    .hero-slide .hero-content h1 { font-size: 28px; }
    .hero-slide .hero-content p { font-size: 16px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .service-card { padding: 30px 20px; }
    .client-box { padding: 15px 20px; font-size: 14px; }
    .content-card { padding: 25px; }
    .certification-detail { padding: 20px; }
    .vm-box { padding: 15px; }
    .feature-grid { grid-template-columns: 1fr; }
    .team-stats { grid-template-columns: repeat(2, 1fr); }
    .values-grid-custom { grid-template-columns: 1fr; }
    .compliance-logo { max-height: 80px; }
    .logo-frame { width: 45px; height: 45px; }
    .site-branding img.emfot-logo { max-height: 30px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-ctas .btn { width: 100%; }
}

@media(max-width: 480px) {
    .page-banner { height: 30vh; min-height: 220px; }
    .page-banner-content h1 { font-size: 22px; }
    .compliance-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .team-stats { grid-template-columns: 1fr; }
    .section-title { font-size: 24px; }
    .hero-slide .hero-content h1 { font-size: 24px; }
    .container { padding: 0 15px; }
    .hero-slider-dots { gap: 8px; bottom: 20px; }
    .slider-dot { width: 12px; height: 12px; }
    .compliance-logo { max-height: 100px; }
    .certification-detail { padding: 15px; }
    .certification-detail h4 { font-size: 18px; }
    .content-card { padding: 20px; }
    .content-card h3 { font-size: 20px; }
    .feature-box { padding: 20px; }
    .value-card { padding: 20px; }
}

/* ============================================
   PREMIUM PAGE LAYOUTS - Inner Pages Redesign
   ============================================ */

/* Vision & Mission Premium Cards */
.vm-grid-premium { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.vm-card-premium { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); transition: all 0.4s ease; }
.vm-card-premium:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.vm-image { position: relative; height: 240px; overflow: hidden; }
.vm-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vm-card-premium:hover .vm-image img { transform: scale(1.08); }
.vm-icon-overlay { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; background: var(--secondary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 4px solid var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.vm-icon-overlay i { font-size: 24px; color: var(--white); }
.vm-content { padding: 50px 30px 30px; text-align: center; }
.vm-content h3 { color: var(--primary-navy); font-size: 24px; margin-bottom: 15px; }
.vm-content p { color: #666; line-height: 1.7; }

/* Dedication Section */
.dedication-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dedication-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.dedication-image img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.dedication-image:hover img { transform: scale(1.03); }
.dedication-badge { position: absolute; bottom: 30px; right: -20px; background: var(--accent-gold); padding: 20px 30px; border-radius: 12px; text-align: center; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.badge-number { display: block; font-size: 36px; font-weight: 800; color: var(--primary-navy); line-height: 1; }
.badge-text { display: block; font-size: 14px; color: var(--primary-navy); font-weight: 600; text-transform: uppercase; margin-top: 5px; }
.dedication-content h2 { margin-bottom: 20px; }
.lead-text { font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 30px; }
.dedication-points { display: flex; flex-direction: column; gap: 15px; }
.d-point { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #444; }
.d-point i { font-size: 20px; }

/* Premium Value Cards with Background Images */
.values-grid-premium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.value-card-premium { position: relative; height: 280px; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; transition: all 0.4s ease; }
.value-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,68,0.1) 0%, rgba(10,31,68,0.85) 100%); transition: all 0.4s ease; }
.value-card-premium:hover .value-overlay { background: linear-gradient(180deg, rgba(10,31,68,0.3) 0%, rgba(10,31,68,0.95) 100%); }
.value-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; color: var(--white); transform: translateY(20px); transition: all 0.4s ease; }
.value-card-premium:hover .value-content { transform: translateY(0); }
.value-content i { font-size: 36px; margin-bottom: 15px; display: block; color: var(--accent-gold); }
.value-content h4 { font-size: 20px; margin-bottom: 10px; }
.value-content p { font-size: 14px; opacity: 0; line-height: 1.6; transform: translateY(10px); transition: all 0.4s ease 0.1s; }
.value-card-premium:hover .value-content p { opacity: 0.9; transform: translateY(0); }

/* Responsive for Premium Layouts */
@media(max-width: 991px) {
    .vm-grid-premium { grid-template-columns: 1fr; }
    .dedication-split { grid-template-columns: 1fr; gap: 40px; }
    .dedication-badge { right: 20px; }
    .values-grid-premium { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
    .values-grid-premium { grid-template-columns: 1fr; }
    .value-card-premium { height: 240px; }
    .vm-content { padding: 45px 20px 25px; }
    .dedication-badge { padding: 15px 20px; }
    .badge-number { font-size: 28px; }
}

/* Service Cards with Images - Premium Grid */
.services-grid-premium { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
@media(min-width: 768px) { .services-grid-premium { grid-template-columns: repeat(3, 1fr); } }

.service-card-premium { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.1); transition: all 0.4s ease; }
.service-card-premium:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.service-card-image { height: 200px; position: relative; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-premium:hover .service-card-image img { transform: scale(1.1); }
.service-card-icon { position: absolute; bottom: -25px; left: 30px; width: 50px; height: 50px; background: var(--secondary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.service-card-icon i { font-size: 20px; color: var(--white); }
.service-card-content { padding: 40px 25px 25px; }
.service-card-content h3 { font-size: 20px; color: var(--primary-navy); margin-bottom: 12px; }
.service-card-content p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 20px; }

/* Vessel Gallery Grid */
.vessel-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vessel-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.vessel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vessel-item:hover img { transform: scale(1.1); }
.vessel-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,31,68,0.9) 100%); display: flex; align-items: flex-end; padding: 20px; }
.vessel-name { color: var(--white); font-weight: 600; font-size: 16px; }

/* Compliance Split Layout */
.compliance-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.compliance-visual { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.compliance-visual img { width: 100%; height: auto; display: block; }
.compliance-badge-float { position: absolute; top: 20px; right: 20px; background: var(--accent-gold); padding: 12px 20px; border-radius: 8px; font-weight: 700; color: var(--primary-navy); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.compliance-text h3 { margin-bottom: 20px; }
.compliance-text p { color: #555; line-height: 1.8; margin-bottom: 15px; }

/* Contact Network Visual */
.contact-network-visual { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.contact-network-visual img { width: 100%; height: auto; display: block; }
.network-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,31,68,0.8) 0%, rgba(0,168,168,0.6) 100%); display: flex; flex-direction: column; justify-content: center; padding: 40px; color: var(--white); }
.network-overlay h4 { font-size: 24px; margin-bottom: 15px; }
.network-overlay p { font-size: 16px; opacity: 0.9; }

/* Responsive Adjustments */
@media(max-width: 991px) {
    .vessel-gallery { grid-template-columns: repeat(2, 1fr); }
    .compliance-split { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .vessel-gallery { grid-template-columns: 1fr; }
    .service-card-image { height: 160px; }
}

/* =============================================
   FULL MOBILE PHONE RESPONSIVENESS
   ============================================= */

/* Hero: push content below fixed header */
.hero-slide { padding-top: 0; }
@media(max-width: 991px) {
    .hero-slide { padding-top: 80px; }
    .hero-content { max-width: 100%; }
}
@media(max-width: 768px) {
    .hero-slider { height: 100svh !important; min-height: 600px !important; }
    .hero-slide { padding-top: 0 !important; align-items: center !important; justify-content: center !important; display: flex !important; text-align: center !important; }
    .hero-slide .hero-content { padding-top: 100px !important; padding-bottom: 80px !important; width: 100% !important; margin: 0 auto !important; }
    .hero-content h1 { font-size: 26px; line-height: 1.3; margin-bottom: 15px; }
    .hero-content p { font-size: 15px; margin-bottom: 25px; max-width: 100%; }
    .hero-badge { font-size: 10px; padding: 5px 12px; }

    /* Contact form */
    .contact-form-box { padding: 25px 20px; }
    .contact-info-box { padding: 10px 0; }
    .info-item { gap: 15px; margin-bottom: 20px; }
    .info-icon { font-size: 24px; flex-shrink: 0; }

    /* Footer: center everything on mobile */
    .footer-col { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .footer-col ul li a:hover, .footer-col a:hover { padding-left: 0; }

    /* Sections padding reduction */
    section { padding: 60px 0; }

    /* About section gap */
    .about-container { gap: 30px; }

    /* Process / how-we-work grid */
    .values-grid-custom { grid-template-columns: 1fr; }

    /* Clients/industries grid */
    .clients-grid { grid-template-columns: 1fr !important; }
}

@media(max-width: 480px) {
    .hero-content h1 { font-size: 22px; }
    .hero-slide { padding-top: 0 !important; align-items: center !important; }
    .hero-slide .hero-content { padding-top: 90px !important; padding-bottom: 75px !important; }
    .hero-slider { min-height: 100dvh !important; }

    /* Buttons full-width on small phones */
    .hero-ctas .btn { width: 100%; text-align: center; }

    /* Typography scale-down */
    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 15px; margin-bottom: 25px; }
    .lead-text { font-size: 15px; }

    /* Padding reductions */
    .container { padding: 0 15px; }
    .contact-form-box { padding: 20px 15px; }
    .content-card { padding: 20px 15px; }
    .service-card { padding: 25px 15px; }
    .value-card { padding: 20px 15px; }
    .feature-box { padding: 20px 15px; }
    .certification-detail { padding: 15px; }
    .stat-item { padding: 20px 15px; }

    /* Stat numbers */
    .stat-item .number { font-size: 28px; }

    /* Service card premium */
    .service-card-content { padding: 35px 15px 20px; }

    /* Footer bottom text */
    .footer-bottom p { font-size: 12px; }

    /* Compliance logos row */
    .compliance-logos-row { gap: 25px 30px !important; }

    /* Vessel gallery */
    .vessel-gallery { grid-template-columns: 1fr; }

    /* Dedication badge */
    .dedication-badge { right: 10px; bottom: 15px; padding: 12px 15px; }
    .badge-number { font-size: 24px; }
}
