/* Suplink style CSS */
:root {
    --primary-color: #004d7a;
    --accent-color: #00a8f3;
    --light-color: #e3f2fd;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --transition: all 0.3s ease;
}

/* Global */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

/* Navigation */
.suplink-header {
    background-color: var(--primary-color) !important;
    height: 120px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    z-index: 9999 !important;
}

.suplink-nav {
    width: 100%;
}

.suplink-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.suplink-nav ul li {
    margin: 0 12px;
    position: relative;
}

.suplink-nav ul li a {
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 10px 5px;
}

.suplink-nav ul li a:hover,
.suplink-nav ul li a.active {
    color: var(--accent-color) !important;
}

/* Dropdown (Super Links) */
.suplink-dropdown {
    background: #00bcd4 !important;
    width: 220px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 5px 5px;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10000;
}

.suplink-nav ul li:hover .suplink-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suplink-dropdown li {
    margin: 0 !important;
    width: 100%;
}

.suplink-dropdown li a {
    color: #fff !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
    text-transform: none !important;
}

.suplink-dropdown li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero */
.suplink-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.suplink-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.suplink-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    color: #000000;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.suplink-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* New Hero Layout Components */
.suplink-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.suplink-hero-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 30px;
    padding: 5px 0;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.suplink-hero-badge {
    display: none;
    /* Removed as requested */
}

.suplink-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.suplink-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Overview */
.service-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 0;
    background: var(--light-color);
}

.service-overview .service-box {
    flex: 1 1 300px;
    margin: 15px;
    text-align: center;
}

.service-overview .service-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Footer */
/* Premium Footer Styles */
.suplink-footer {
    background: #002147 !important;
    color: #ffffff;
    padding: 50px 0 25px;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid #00bcd4;
    /* Vibrant top accent */
}

.suplink-footer .container {
    max-width: 900px !important;
}

.suplink-footer .row {
    justify-content: center !important;
}

.suplink-footer h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid #00bcd4;
    /* Modern vertical accent */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suplink-footer p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.suplink-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suplink-footer ul li {
    margin-bottom: 8px;
}

.suplink-footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.suplink-footer ul li a::before {
    content: '\f105';
    /* FontAwesome chevron-right */
    font-family: FontAwesome;
    margin-right: 8px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.suplink-footer ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.suplink-footer ul li a:hover::before {
    opacity: 1;
    color: #00bcd4;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    /* Modern square-round */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: #00bcd4;
    border-color: #00bcd4;
    color: #002147;
    transform: rotate(360deg) scale(1.1);
    /* Fun, professional spin */
}

.suplink-footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.suplink-footer-bottom p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Buttons */
.suplink-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: var(--transition);
}

.suplink-btn:hover {
    background: var(--primary-color);
}

/* Form Styles */
.suplink-form-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.suplink-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-top: 5px solid var(--accent-color);
}