/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f5f7fa;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 45, 90, 0.8)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

/* Text with Port Background */
.text-bg {
    background-image: url('../images/port-bg.jpg');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding: 0 10px;
    position: relative;
    display: inline-block;
    animation: textZoom 10s infinite alternate;
}

.text-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    border-radius: 5px;
    padding: 0 10px;
}

/* VMS Description Section */
.vms-description {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}

.vms-description h2 {
    font-size: 32px;
    color: #002d5a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.vms-description h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0056b3, #00a8ff);
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.description-text p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: rgba(0, 86, 179, 0.05);
    border-left: 4px solid #0056b3;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.highlight-box h3 {
    color: #002d5a;
    font-size: 20px;
    margin-bottom: 15px;
}

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

.highlight-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #0056b3;
    font-weight: 500;
}

.highlight-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/check-icon-blue.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.description-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 45, 90, 0.1);
    transition: transform 0.3s ease;
}

.description-image:hover {
    transform: translateY(-5px);
}

.description-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: linear-gradient(to right, #0056b3, #00a8ff);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* ============================================= */
/* Enhanced App Features Section */
/* ============================================= */
.app-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.app-features .container {
    position: relative;
    z-index: 2;
}

.app-features .section-title h2 {
    font-size: 32px;
    color: #002d5a;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.app-features .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0056b3, #00a8ff);
}

.app-features .subtitle {
    text-align: center;
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.app-features .app-name {
    color: #0056b3;
    font-weight: 700;
    position: relative;
}

.app-features .app-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0.5;
}

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

.app-features .feature-card {
    background: white;
    padding: 40px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 45, 90, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.15);
}

.app-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 45, 90, 0.15);
    border-color: rgba(0, 86, 179, 0.3);
}

.app-features .feature-icon-container {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: center;
}

.app-features .feature-icon-border {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 86, 179, 0.05) 100%);
    border: 1px dashed rgba(0, 86, 179, 0.3);
    position: relative;
}

.app-features .feature-icon-border::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 2px solid rgba(0, 86, 179, 0.1);
    border-radius: 50%;
}

.app-features .feature-svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 45, 90, 0.1));
    color: #0056b3;
}

.app-features .feature-card h3 {
    color: #002d5a;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.app-features .feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #0056b3;
    opacity: 0.5;
}

.app-features .feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 280px;
}

.app-features .feature-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0056b3, #00a8ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.app-features .feature-card:hover .feature-decoration {
    transform: scaleX(1);
}

/* Background Elements */
.app-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.app-features::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.05) 0%, rgba(0, 168, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* ================================= */
/* Modern Horizontal Pricing Styles */
/* ================================= */
.pricing-horizontal {
    padding: 80px 0;
    background-color: #fff;
}

.pricing-cards-horizontal {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card-horizontal {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,45,90,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
}

.pricing-card-horizontal.featured {
    border: 2px solid #0056b3;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,45,90,0.15);
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-header h3 {
    color: #002d5a;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    color: #0056b3;
    font-weight: 600;
    align-self: flex-start;
    margin-right: 5px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #002d5a;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #666;
    margin-left: 5px;
    align-self: flex-end;
    margin-bottom: 5px;
}

.package-desc {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.pricing-horizontal .features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.pricing-horizontal .features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #444;
}

.pricing-horizontal .check-icon {
    color: #25a725;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 20px;
    text-align: center;
}

.pricing-horizontal .cross-icon {
    color: #ff4d4d;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 20px;
    text-align: center;
}

.cta-button-outline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid #0056b3;
    color: #0056b3;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button-outline:hover {
    background: #0056b3;
    color: white;
}

.cta-button-solid {
    display: block;
    text-align: center;
    padding: 12px;
    background: #0056b3;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid transparent;
}

.cta-button-solid:hover {
    background: #003d82;
    transform: translateY(-2px);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: #ff6b00;
    color: white;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ribbon::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid #c05200;
    border-top: 5px solid #c05200;
    border-bottom: 5px solid transparent;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #0056b3;
    font-size: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

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

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 20px 10px;
    color: #0056b3;
    font-size: 22px;
}

.product-card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 15px;
}

.product-specs {
    padding: 0 20px 20px;
}

.product-specs ul {
    list-style: none;
}

.product-specs ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.product-specs ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    min-width: 250px;
    margin-bottom: 30px;
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover .step-image {
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 75%;
    width: 50%;
    height: 2px;
    background-color: #0056b3;
}

.step h3 {
    margin-bottom: 10px;
    color: #0056b3;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 45, 90, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: #0056b3;
    color: white;
    padding: 80px 0;
    background-image: linear-gradient(135deg, #0056b3 0%, #003366 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6b00;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p strong {
    min-width: 100px;
    display: inline-block;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #002d5a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about h3, 
.footer-links h3, 
.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ff6b00;
}

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

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

.footer-links ul li a {
    transition: color 0.3s ease;
    padding-left: 10px;
    position: relative;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff6b00;
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #e05d00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #ff6b00;
    color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    animation: float 2s ease-in-out infinite;
}

.floating-wa a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.floating-wa a:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-wa img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.floating-wa span {
    font-size: 16px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes textZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 120%;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-grid,
    .products-grid,
    .gallery-grid,
    .app-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container,
    .pricing-cards-horizontal {
        grid-template-columns: 1fr;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card-horizontal.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .main-nav ul {
        margin-top: 20px;
    }
    
    .main-nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .features-grid,
    .products-grid,
    .gallery-grid,
    .app-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .product-card,
    .app-features .feature-card {
        padding: 25px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .section-title h2,
    .app-features .section-title h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-horizontal {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav ul li {
        margin: 5px 10px;
    }
    
    .text-bg {
        background-image: none;
        color: white;
        -webkit-text-fill-color: white;
    }
    
    .text-bg::after {
        display: none;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .app-features .section-title h2,
    .pricing-horizontal .section-title h2 {
        font-size: 24px;
    }
    
    .app-features .feature-icon-border,
    .pricing-card-horizontal .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .app-features .feature-svg,
    .pricing-card-horizontal .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .floating-wa {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-wa a {
        padding: 10px 15px;
    }
    
    .floating-wa img {
        width: 35px;
        height: 35px;
    }
    
    .floating-wa span {
        font-size: 14px;
    }
}/* ================================ */
/* Enhanced Features Section */
/* ================================ */
.app-features {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 45, 90, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 45, 90, 0.1);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(0, 86, 179, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(0, 86, 179, 0.2);
}

.feature-svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
    color: #0056b3; /* Warna ikon */
}

.feature-card h3 {
    color: #002d5a;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #0056b3;
    opacity: 0.5;
}

.feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* ================================ */
/* Centered Product Title */
/* ================================ */
.section-title-center {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-center h2 {
    font-size: 32px;
    color: #0056b3;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0056b3, #ff6b00);
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .section-title-center h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .feature-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .feature-svg {
        width: 35px;
        height: 35px;
    }
    
    .section-title-center h2 {
        font-size: 24px;
    }
}/* ================================ */
/* Unified Section Titles */
/* ================================ */
.section-title-center {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-center h2 {
    font-size: 32px;
    color: #0056b3;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle-center {
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0056b3, #ff6b00);
    margin: 0 auto;
    border-radius: 3px;
}

/* Gallery Specific Styles */
.gallery .section-title-center h2 {
    color: #002d5a;
}

/* Pricing Specific Styles */
.pricing-horizontal .section-title-center h2 {
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title-center h2 {
        font-size: 28px;
    }
    
    .subtitle-center {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .section-title-center h2 {
        font-size: 24px;
    }
    
    .title-decoration {
        width: 60px;
    }
}/* ================================ */
/* How It Works Section Styling */
/* ================================ */
.how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.how-it-works .section-title-center h2 {
    color: #002d5a; /* Dark blue to match gallery */
}

/* Step styling remains the same, just ensure it uses the new title style */
.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    min-width: 250px;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 40px;
    }
}body {
  padding-top: 80px; /* Sesuaikan jika header Anda berbeda */
}

/* Header */
header.auto-hide-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
  transition: transform .3s ease;
}
header.hide {
  transform: translateY(-100%);
}

/* Header inner */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Nav desktop */
.main-nav ul {
  display: flex;
  gap: 20px;
}
.main-nav ul li a {
  font-weight: 500;
  padding: 10px;
  color: #333;
}
.cta-button {
  background: #ff6b00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  /* Adjust header height */
  header.auto-hide-header {
    height: 60px;
  }
  body {
    padding-top: 60px;
  }

  .main-nav.active {
    max-height: 300px;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li a {
    padding: 15px;
  }
  /* Optional: hide CTA in menu */
  .cta-button {
    display: none;
  }
}

/* --- Akhir Responsif Header & Mobile Menu --- */

/* ======================= */
/* AKHIR FILE STYLE.CSS   */
/* ======================= */
/* Auto Hide Header */
header.auto-hide-header {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

header.auto-hide-header.hide {
    transform: translateY(-100%);
}/* ======================= */
/* Enhanced Header Styles */
/* ======================= */
header.auto-hide-header {
    background-color: #0056b3; /* Blue background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header.auto-hide-header .main-nav ul li a {
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

header.auto-hide-header .main-nav ul li a:hover {
    color: #ff6b00;
}

header.auto-hide-header .main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ff6b00;
    transition: width 0.3s ease;
}

header.auto-hide-header .main-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #0056b3;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        max-height: 400px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cta-button {
        display: none;
    }
    
    /* Adjust header height for mobile */
    header.auto-hide-header {
        height: 80px;
    }
    
    body {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    header.auto-hide-header {
        height: 70px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .main-nav {
        top: 70px;
    }
    
    .logo img {
        height: 40px;
    }
}