/* ==========================================================================
   HAS Comércio Corporate Style System
   ========================================================================== */

/* Load Premium Fonts */
@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 */
    --primary: #F58220;           /* Vibrant Angolan Orange */
    --primary-hover: #D76D13;
    --primary-light: #FFF0E5;     /* Soft warm highlight background */
    --secondary: #0F2C59;         /* Deep Trustworthy Corporate Blue */
    --secondary-hover: #0A1E3D;
    --secondary-light: #EBF1FA;   /* Soft blue highlight background */
    
    --bg-main: #FFFFFF;
    --bg-sec: #F8F9FA;            /* Soft off-white */
    --bg-tertiary: #F3F4F6;
    
    --text-main: #1F2937;         /* Contrast rich charcoal */
    --text-muted: #6B7280;        /* Accessible gray */
    --text-light: #9CA3AF;
    
    --border-color: #E5E7EB;
    --border-hover: #D1D5DB;
    
    /* Layout Constants */
    --max-width: 1200px;
    --header-height: 96px;
    --header-height-shrink: 76px;
    
    /* Shadows & Radii */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(15, 44, 89, 0.08);
    --shadow-hover: 0 25px 50px rgba(245, 130, 32, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* Typography Helpers */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }

/* Global Layout Grid & Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

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

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-main);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.25);
}

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

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 44, 89, 0.15);
}

.btn-white {
    background-color: var(--bg-main);
    color: var(--secondary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background-color: var(--bg-sec);
}

.btn-icon {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Badge System */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.badge-coming-soon {
    background-color: #FFF3E0;
    color: #E65100;
    border: 1px solid rgba(230, 81, 0, 0.15);
}

.badge-coming-soon::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E65100;
    animation: badgePulse 1.5s infinite ease-in-out;
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(245, 130, 32, 0.15);
}

@keyframes badgePulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

/* Sticky Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
}

.header.shrink {
    height: var(--header-height-shrink);
    box-shadow: var(--shadow-md);
}

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

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

.logo-img {
    height: 88px;
    width: auto;
    transition: all var(--transition-normal);
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
}

.header.shrink .logo-img {
    height: 72px;
}

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

.nav-item a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--secondary);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-item.active a {
    color: var(--primary);
}

/* Highlight nav-item for Em Breve */
.nav-menu .nav-item-highlight a {
    background-color: #FFF3E0 !important;
    color: #E65100 !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-full);
    border: 1px solid rgba(230, 81, 0, 0.2);
    font-weight: 700 !important;
    font-size: 13px !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-normal);
}

.nav-menu .nav-item-highlight a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E65100;
    animation: badgePulse 1.5s infinite ease-in-out;
}

.nav-menu .nav-item-highlight a:hover {
    background-color: #FFE0B2 !important;
    color: #D84315 !important;
    border-color: rgba(230, 81, 0, 0.4);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.15);
}

.nav-menu .nav-item-highlight a::after {
    display: none !important; /* Remove line animation for highlighted button */
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
    position: relative;
    transition: background-color var(--transition-fast);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
    left: 0;
    transition: transform var(--transition-normal);
}

.nav-toggle-icon::before { top: -8px; }
.nav-toggle-icon::after { bottom: -8px; }

/* Hamburger Menu Open State */
.nav-toggle.open .nav-toggle-icon {
    background-color: transparent;
}
.nav-toggle.open .nav-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--bg-main);
    background-color: var(--secondary);
    padding-top: calc(var(--header-height) + 50px); /* Safety buffer to prevent header overlap on scroll */
    padding-bottom: 80px; /* Lift buttons up so they don't touch the bottom divider */
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.05);
    transition: transform var(--transition-slow);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 44, 89, 0.9) 0%, rgba(15, 44, 89, 0.6) 50%, rgba(245, 130, 32, 0.1) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--bg-main);
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.8s;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

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

.about-highlight-icon {
    font-size: 20px;
    color: var(--primary);
    margin-top: 4px;
}

.about-highlight-title {
    font-weight: 600;
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 4px;
}

.about-highlight-desc {
    color: var(--text-muted);
    font-size: 14px;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-frame:hover .about-img {
    transform: scale(1.03);
}

.about-badge-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--bg-main);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 5px solid var(--primary);
    max-width: 280px;
}

.about-badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge-txt {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

/* Our Vision Section */
.vision-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #153E77 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 80px 60px;
    box-shadow: var(--shadow-lg);
    color: var(--bg-main);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vision-content h3 {
    color: var(--bg-main);
    font-size: 32px;
    margin-bottom: 20px;
}

.vision-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 24px;
}

.vision-points {
    list-style: none;
}

.vision-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 500;
}

.vision-point-icon {
    color: var(--primary);
    font-size: 16px;
}

.vision-accent-box {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    text-align: center;
}

.vision-accent-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.vision-accent-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
}

.vision-accent-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 44, 89, 0.05);
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(15, 44, 89, 0.08);
    border-color: rgba(245, 130, 32, 0.25);
}

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

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

/* Flagship Oil derivatives Card accentuation */
.service-card.flagship {
    border-color: rgba(245, 130, 32, 0.2);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFB 100%);
    box-shadow: 0 12px 36px rgba(245, 130, 32, 0.04);
}

.service-card.flagship::after {
    transform: scaleX(1);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--bg-sec) 0%, var(--secondary-light) 100%);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(15, 44, 89, 0.08);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 0 4px 10px rgba(15, 44, 89, 0.02);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA852 100%);
    color: var(--bg-main);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.25);
    transform: scale(1.08) rotate(3deg);
}

.service-card.flagship .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA852 100%);
    color: var(--bg-main);
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(245, 130, 32, 0.15);
}

.service-title {
    font-size: 22px;
    margin-bottom: 14px;
    transition: color var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 35px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--bg-sec);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    margin-top: auto;
    align-self: flex-start;
    gap: 6px;
}

.service-link-icon {
    font-size: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
    background-color: var(--primary);
    color: var(--bg-main);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}

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

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

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

.why-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.why-card-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.why-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Trusted By Section (Partners Logos) */
#partners {
    padding: 60px 0;
    background-color: var(--bg-sec);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

#partners .section-title-wrapper {
    margin-bottom: 40px;
}

.partners-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Linear-gradient overlay fading at edges for premium look */
.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-sec) 0%, rgba(248, 249, 250, 0) 100%);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-sec) 0%, rgba(248, 249, 250, 0) 100%);
}

.partners-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo-wrapper {
    height: 90px;
    width: 250px;
    background-color: var(--bg-main);
    border: 1px solid rgba(15, 44, 89, 0.06);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px; /* Decreased padding to give more room for larger logos */
    transition: all var(--transition-normal);
    cursor: pointer;
    flex-shrink: 0;
}

.partner-logo-wrapper:hover {
    border-color: rgba(245, 130, 32, 0.3);
    box-shadow: 0 15px 30px rgba(15, 44, 89, 0.08);
    transform: translateY(-5px) scale(1.03);
}

.partner-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: none; /* Keep them normal (full color) */
    opacity: 0.85;
    transition: all var(--transition-normal);
}

/* Individual scaling adjustments (now that logo assets are cropped/background-free) */
.logo-sonangol {
    transform: scale(1.18); /* Adjusted to keep it safe from box boundaries while matching XIITO */
}

.logo-pumangol {
    transform: scale(1.48); /* Increased to match visual weight */
}

.logo-etu {
    transform: scale(1.45); /* Increased to match visual weight */
}

.logo-girar {
    transform: scale(1.65); /* Increased to match visual weight of wide logo */
    mix-blend-mode: multiply; /* Seamlessly blends white logo background into partners off-white */
}

.logo-xiito {
    transform: scale(0.92); /* Reduced to match Sonangol's height perfectly without overflow */
    mix-blend-mode: multiply; /* Seamlessly blends white logo background into partners off-white */
}

.partner-logo-wrapper:hover .partner-logo {
    opacity: 1;
}

.partner-logo-wrapper:hover .logo-sonangol {
    transform: scale(1.26) !important; /* Zoom bounce on hover */
}

.partner-logo-wrapper:hover .logo-pumangol {
    transform: scale(1.58) !important; /* Zoom bounce on hover */
}

.partner-logo-wrapper:hover .logo-etu {
    transform: scale(1.55) !important; /* Zoom bounce on hover */
}

.partner-logo-wrapper:hover .logo-girar {
    transform: scale(1.75) !important; /* Zoom bounce on hover */
}

.partner-logo-wrapper:hover .logo-xiito {
    transform: scale(1.02) !important; /* Zoom bounce on hover */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Loops after shifting exactly the width of the unique set (5 items: 5 * (250px + 30px) = 1400px) */
        transform: translateX(calc(-5 * (250px + 30px)));
    }
}

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

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--bg-main);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

/* Contact Section & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-val {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.4;
}

.contact-info-val a:hover {
    color: var(--primary);
}

/* Premium Form Styling */
.contact-form-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background-color: var(--bg-sec);
    color: var(--text-main);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-main);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

.form-status {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    display: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

.form-status.success {
    display: block;
    background-color: #DEF7EC;
    color: #03543F;
}

.form-status.error {
    display: block;
    background-color: #FDE8E8;
    color: #9B1C1C;
}

/* Footer Section */
.footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--primary);
}

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

.footer-col-title {
    font-size: 18px;
    color: var(--bg-main);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-desc {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    transition: transform var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    font-size: 14px;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    color: var(--primary);
    margin-top: 3px;
}

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

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social-btn:hover {
    background-color: var(--primary);
    color: var(--bg-main);
    transform: translateY(-2px);
}

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

/* Coming Soon Custom Page Hero */
.coming-soon-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--bg-sec) 0%, var(--secondary-light) 100%);
    border-bottom: 1px solid var(--border-color);
}

.coming-soon-badge-row {
    margin-bottom: 16px;
}

.cs-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.cs-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cs-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.waitlist-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.waitlist-card-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.waitlist-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* CSS Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .about-grid, .vision-grid, .contact-grid, .cs-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-frame {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-img {
        height: 380px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --header-height-shrink: 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .vision-banner {
        padding: 40px 24px;
    }
    
    .vision-accent-box {
        padding: 24px;
    }
    
    .cs-title {
        font-size: 36px;
    }
}

/* Interactive Tabs for Em Breve Page & Machinery Sourcing styles */
.tabs-container {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 30px;
}

.tabs-header {
    display: flex;
    background-color: var(--bg-sec);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(245, 130, 32, 0.02);
}

.tab-btn.active {
    color: var(--primary);
    background-color: var(--bg-main);
    border-bottom-color: var(--primary);
}

.tabs-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeInTab 0.4s ease-out;
}

/* Machinery Detail list inside sourcing page */
.machinery-perks-list {
    list-style: none;
    margin-bottom: 30px;
}

.machinery-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.machinery-perk-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    font-weight: bold;
}

.machinery-perk-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2px;
}

.machinery-perk-desc {
    color: var(--text-muted);
    font-size: 14px;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 15px;
    }
    .tab-btn.active {
        border-left-color: var(--primary);
    }
    .tabs-content {
        padding: 24px 16px;
    }
}

/* Clickable Map Link Effects */
.contact-map-link,
.footer-map-link {
    transition: all var(--transition-normal);
}

.contact-map-link:hover {
    transform: translateY(-3px);
}

.contact-map-link:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA852 100%);
    color: var(--bg-main);
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(245, 130, 32, 0.2);
}

.contact-map-link:active {
    transform: translateY(-1px) scale(0.98);
}

.footer-map-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.footer-map-link:hover {
    color: var(--primary);
}

.footer-map-link:hover .footer-contact-icon {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-map-link:active {
    transform: scale(0.97);
}

.footer-contact-icon {
}

/* Stats Counter Section */
.section-stats {
    background-color: var(--bg-main); /* Alternating white background */
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-meta {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
}

.stat-submeta {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.stat-meta-small {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--primary); /* Vibrant corporate orange matching the logo */
    line-height: 1;
    margin: 12px 0;
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .stat-number {
        font-size: 52px;
    }
}
