/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
    --primary: #0d47a1;
    --primary-dark: #002171;
    --primary-light: #5472d3;
    --secondary: #00897b;
    --secondary-dark: #005b4f;
    --secondary-light: #4ebaaa;
    --accent: #ff6f00;
    --dark: #1a1a2e;
    --dark-blue: #0a1628;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact a {
    color: var(--white);
    margin-right: 20px;
    opacity: 0.9;
}

.header-contact a:hover {
    opacity: 1;
}

.header-contact i {
    margin-right: 6px;
    color: var(--secondary-light);
}

.header-address {
    color: var(--white);
    opacity: 0.9;
    font-size: 13px;
}

.header-address i {
    margin-right: 6px;
    color: var(--secondary-light);
}

.btn-quote-small {
    background: var(--secondary);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-quote-small:hover {
    background: var(--secondary-light);
}

.main-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.main-header.scrolled .main-nav {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.main-header.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a i {
    font-size: 9px;
    margin-left: 3px;
    transition: var(--transition);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 230px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    border-top: 3px solid var(--secondary);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0 !important;
    border: none !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 9px 22px !important;
    font-size: 13px !important;
    color: var(--text) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: var(--light-bg) !important;
    color: var(--secondary) !important;
    padding-left: 28px !important;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 137, 123, 0.3);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background: var(--white);
    color: var(--secondary);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/hero-ship.svg') center/cover no-repeat;
    background-color: var(--dark-blue);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(13, 71, 161, 0.6) 50%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(78, 186, 170, 0.04) 40%, rgba(78, 186, 170, 0.08) 50%, rgba(78, 186, 170, 0.04) 60%, transparent 100%);
    animation: heroGradientSweep 8s ease-in-out infinite;
}

@keyframes heroGradientSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    50.01%, 100% { left: -100%; opacity: 0; }
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-subtitle-tag {
    display: inline-block;
    background: rgba(0, 137, 123, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle-tag.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-main-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-top: 24px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-description.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* Animated road at hero bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        rgba(78, 186, 170, 0.6) 0px,
        rgba(78, 186, 170, 0.6) 30px,
        transparent 30px,
        transparent 60px
    );
    animation: roadMove 2s linear infinite;
    z-index: 5;
}

@keyframes roadMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60px); }
}

/* Section Divider */
.section-divider {
    position: relative;
    margin-top: -30px;
    z-index: 6;
    line-height: 0;
}

.section-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-content .section-tag {
    margin-bottom: 8px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    margin: 24px 0;
}

.about-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
}

.about-features i {
    color: var(--secondary);
    margin-right: 10px;
}

/* ============================================
   SERVICES DETAIL (IMAGE GRID)
   ============================================ */
.services-detail {
    padding: 100px 0;
    background: var(--white);
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image-card:hover img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: var(--transition);
}

.service-image-overlay h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-image-card:hover .service-image-overlay {
    background: linear-gradient(transparent, rgba(0, 137, 123, 0.8));
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.technology-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-content .section-tag {
    margin-bottom: 8px;
}

.tech-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.tech-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.tech-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-list i {
    color: var(--secondary);
    width: 20px;
}

.tech-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.map-info-box {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.map-info-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

.map-info-box p {
    opacity: 0.85;
    margin-bottom: 20px;
    font-size: 14px;
}

.map-info-box ul li {
    padding: 6px 0;
    font-size: 14px;
    opacity: 0.9;
}

.map-info-box ul li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--secondary-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.04)"/></svg>');
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    font-size: 40px;
    color: var(--secondary-light);
    margin-bottom: 20px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--secondary-light);
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 60px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-info .section-tag {
    margin-bottom: 8px;
}

.quote-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.quote-info p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.quote-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.quote-contact-info .contact-item i {
    color: var(--secondary);
    width: 20px;
    font-size: 18px;
}

.quote-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    margin-bottom: 16px;
    background: var(--light-bg);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark-blue);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-contact .contact-item i {
    color: var(--secondary-light);
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ============================================
   FREIGHT HERO ANIMATIONS
   ============================================ */
.freight-animation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Moving trucks */
.moving-truck {
    position: absolute;
    opacity: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.truck-1 {
    width: 120px;
    top: 65%;
    animation: truckMove1 18s linear infinite;
    animation-delay: 0s;
}

.truck-2 {
    width: 90px;
    top: 45%;
    animation: truckMove2 22s linear infinite;
    animation-delay: 5s;
}

.truck-3 {
    width: 70px;
    top: 78%;
    animation: truckMove3 25s linear infinite;
    animation-delay: 10s;
}

@keyframes truckMove1 {
    0% { left: -150px; opacity: 0; }
    5% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { left: 105%; opacity: 0; }
}

@keyframes truckMove2 {
    0% { left: 110%; opacity: 0; transform: scaleX(-1); }
    5% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { left: -150px; opacity: 0; transform: scaleX(-1); }
}

@keyframes truckMove3 {
    0% { left: -120px; opacity: 0; }
    8% { opacity: 0.5; }
    88% { opacity: 0.5; }
    100% { left: 108%; opacity: 0; }
}

/* Route lines animation */
.route-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.route-path {
    stroke-dashoffset: 0;
    animation: routeDash 20s linear infinite;
}

.route-1 { animation-duration: 15s; }
.route-2 { animation-duration: 20s; animation-delay: 3s; }
.route-3 { animation-duration: 25s; animation-delay: 7s; }

@keyframes routeDash {
    to { stroke-dashoffset: -100; }
}

/* Floating logistics icons */
.float-icon {
    position: absolute;
    font-size: 20px;
    color: rgba(78, 186, 170, 0.25);
    animation: iconFloat 8s ease-in-out infinite;
}

.icon-box {
    top: 20%;
    left: 15%;
    animation-duration: 7s;
    animation-delay: 0s;
    font-size: 18px;
}

.icon-warehouse {
    top: 30%;
    right: 20%;
    animation-duration: 9s;
    animation-delay: 1.5s;
    font-size: 22px;
    color: rgba(78, 186, 170, 0.2);
}

.icon-globe {
    top: 55%;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 3s;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.1);
}

.icon-route {
    top: 25%;
    left: 70%;
    animation-duration: 8s;
    animation-delay: 2s;
    font-size: 16px;
    color: rgba(78, 186, 170, 0.2);
}

.icon-container {
    top: 60%;
    right: 15%;
    animation-duration: 11s;
    animation-delay: 4s;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.08);
}

.icon-clock {
    top: 15%;
    left: 50%;
    animation-duration: 7.5s;
    animation-delay: 5s;
    font-size: 15px;
    color: rgba(78, 186, 170, 0.18);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-8px) rotate(-3deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
        opacity: 0.7;
    }
}

/* Pulsing location dots (simulating delivery points) */
.location-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(78, 186, 170, 0.6);
    animation: locationPulse 3s ease-in-out infinite;
}

.location-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(78, 186, 170, 0.3);
    animation: locationRipple 3s ease-out infinite;
}

.dot-1 { top: 35%; left: 30%; animation-delay: 0s; }
.dot-2 { top: 55%; left: 60%; animation-delay: 0.8s; }
.dot-3 { top: 40%; right: 25%; animation-delay: 1.6s; }
.dot-4 { top: 70%; left: 45%; animation-delay: 2.4s; }
.dot-5 { top: 25%; left: 75%; animation-delay: 3.2s; }

@keyframes locationPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.3); }
}

@keyframes locationRipple {
    0% { width: 8px; height: 8px; opacity: 0.8; }
    100% { width: 40px; height: 40px; opacity: 0; }
}

/* AOS-like scroll animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-main-text {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-main-text {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .page-hero {
        height: 360px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-hero-content .hero-desc {
        font-size: 14px;
    }

    .page-hero-content .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .tech-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .services-image-grid {
        grid-template-columns: 1fr;
    }
    
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-main-text {
        font-size: 26px;
    }
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 100px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(0, 105, 92, 0.5) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-hero-content .hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.page-hero-content .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 20px;
}

.page-hero-content .hero-btns a {
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-hero-content .hero-btns .btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
}

.page-hero-content .hero-btns .btn-hero-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.page-hero-content .hero-btns .btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}

.page-hero-content .hero-btns .btn-hero-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.page-hero-content .breadcrumb {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.page-hero-content .breadcrumb a {
    color: var(--secondary-light);
}

.page-hero-content .breadcrumb a:hover {
    color: var(--white);
}

.page-hero-content .breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

.page-hero-content h1,
.page-hero-content .hero-desc,
.page-hero-content .hero-btns,
.page-hero-content .breadcrumb {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.7s ease forwards;
}

.page-hero-content .hero-desc {
    animation-delay: 0.15s;
}

.page-hero-content .hero-btns {
    animation-delay: 0.3s;
}

.page-hero-content .breadcrumb {
    animation-delay: 0.45s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Content Placeholder */
.page-content {
    padding: 80px 0;
}

.page-content .container {
    max-width: 1200px;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.page-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.page-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.page-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.page-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 12px;
}

.content-section {
    margin-bottom: 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-grid img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.content-intro {
    max-width: 800px;
    margin-bottom: 40px;
}

.content-intro p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 50px;
}

/* Content Images */
.content-image-full {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.content-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.content-image-split img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-image-left,
.content-image-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.content-image-left img,
.content-image-right img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.content-image-right {
    direction: rtl;
}

.content-image-right > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .content-image-split {
        grid-template-columns: 1fr;
    }
    .content-image-left,
    .content-image-right {
        grid-template-columns: 1fr;
    }
    .content-image-left img,
    .content-image-right img {
        margin-top: 40px;
    }
}

.cta-box h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .page-hero {
        height: 250px;
    }
    .page-hero-content h1 {
        font-size: 28px;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* ============================================
   TESTIMONIAL CARD (inline on pages)
   ============================================ */
.page-testimonial {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--secondary);
    position: relative;
}

.page-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.page-testimonial p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
}

.page-testimonial .testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    font-style: normal;
    font-size: 14px;
}

.page-testimonial .testimonial-role {
    color: var(--text-light);
    font-size: 13px;
    font-style: normal;
}

/* ============================================
   QUICK QUOTE / ENQUIRY FORM (inline)
   ============================================ */
.inline-form-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d47a1 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin: 50px 0;
    color: var(--white);
}

.inline-form-section h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 8px;
}

.inline-form-section .form-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 14px;
}

.inline-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inline-form-grid input,
.inline-form-grid textarea,
.inline-form-grid select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.inline-form-grid input::placeholder,
.inline-form-grid textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.inline-form-grid input:focus,
.inline-form-grid textarea:focus,
.inline-form-grid select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.12);
}

.inline-form-grid .form-full {
    grid-column: span 2;
}

.inline-form-grid .btn-submit {
    grid-column: span 2;
    padding: 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.inline-form-grid .btn-submit:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* ============================================
   PROJECT / CASE STUDY SHOWCASE
   ============================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.showcase-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.showcase-card-img {
    height: 180px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card-img i {
    font-size: 48px;
    color: var(--secondary);
    opacity: 0.4;
}

.showcase-card-body {
    padding: 24px;
}

.showcase-card-body h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.showcase-card-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.showcase-card-body .showcase-tag {
    display: inline-block;
    background: rgba(78,186,170,0.1);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 12px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .inline-form-grid {
        grid-template-columns: 1fr;
    }
    .inline-form-grid .form-full,
    .inline-form-grid .btn-submit {
        grid-column: span 1;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }
}
