/* HOME PAGE CREATIVE VISUALS */

/* Premium Navigation styles moved to premium.css */

/* Immersive Hero Section */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 0;
}

/* Smooth Creative Wave Transition */
.hero-immersive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: #f9fafb;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(2);
    z-index: 3;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 17, 32, 1) 0%,
            rgba(20, 27, 45, 0.95) 40%,
            rgba(14, 24, 40, 1) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(1, 128, 1, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 30px);
    }
}

.eagle-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    opacity: 0.06;
    animation: eagleFloat 40s ease-in-out infinite;
    pointer-events: none;
}

@keyframes eagleFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-5deg) scale(1);
    }

    25% {
        transform: translate(-60%, -45%) rotate(0deg) scale(1.05);
    }

    50% {
        transform: translate(-40%, -55%) rotate(5deg) scale(1.1);
    }

    75% {
        transform: translate(-55%, -50%) rotate(0deg) scale(1.05);
    }
}

.eagle-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(1, 128, 1, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--blaith-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(1, 128, 1, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blaith-primary), var(--blaith-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-creative {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blaith-primary), var(--blaith-primary-light));
    color: #fff;
    box-shadow: 0 8px 30px rgba(1, 128, 1, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blaith-primary-light), var(--blaith-primary));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(1, 128, 1, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--blaith-primary);
}

.btn-creative span {
    position: relative;
    z-index: 1;
}

.trust-bar {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--blaith-gold);
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* Services Showcase - Creative Cards */
.services-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #0B1120 0%, #1a2332 50%, #0e1828 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(1, 128, 1, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.services-showcase .container {
    position: relative;
    z-index: 2;
}

.section-header-creative {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(1, 128, 1, 0.1);
    color: var(--blaith-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(1, 128, 1, 0.3);
}

.section-title-xl {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.15rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-modern {
    background: linear-gradient(135deg, rgba(20, 27, 45, 0.6), rgba(11, 17, 32, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 128, 1, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 128, 1, 0.3);
    box-shadow: 0 20px 60px rgba(1, 128, 1, 0.2);
}

.card-visual {
    position: relative;
    margin-bottom: 30px;
}

.card-icon-creative {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blaith-primary), var(--blaith-primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(1, 128, 1, 0.4);
    transition: all 0.4s;
}

.service-card-modern:hover .card-icon-creative {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(1, 128, 1, 0.6);
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    transition: opacity 0.5s;
}

.oil-glow {
    background: radial-gradient(circle, #f59e0b, transparent);
}

.recovery-glow {
    background: radial-gradient(circle, #10b981, transparent);
}

.marine-glow {
    background: radial-gradient(circle, #3b82f6, transparent);
}

.service-card-modern:hover .card-glow {
    opacity: 0.6;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.card-content p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-highlights i {
    color: var(--blaith-primary);
}

.service-card-modern .card-content {
    position: relative;
    z-index: 10;
}

.service-card-modern .card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blaith-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.service-card-modern .card-link:hover {
    gap: 15px;
    color: var(--blaith-primary-light);
}

.service-card-modern .card-hover-effect {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, transparent, rgba(1, 128, 1, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.service-card-modern:hover .card-hover-effect {
    opacity: 1;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px;
        transition: right 0.4s;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .services-grid-creative {
        grid-template-columns: 1fr;
    }
}

/* About Section - Premium Design */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(1, 128, 1, 0.05), transparent 70%);
    pointer-events: none;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blaith-primary), var(--blaith-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 128, 1, 0.15);
    border-color: var(--blaith-primary);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(1, 128, 1, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--blaith-primary);
    transition: all 0.4s;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--blaith-primary), var(--blaith-primary-light));
    color: #fff;
    box-shadow: 0 8px 25px rgba(1, 128, 1, 0.4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blaith-primary), var(--blaith-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text .section-badge {
    display: inline-block;
    background: rgba(1, 128, 1, 0.1);
    color: var(--blaith-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(1, 128, 1, 0.2);
}

.about-text .section-title-xl {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #111827;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-description {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-description:last-of-type {
    margin-bottom: 40px;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
}

.about-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(1, 128, 1, 0.2);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(1, 128, 1, 0.3) 0%,
            rgba(11, 17, 32, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Decorative Elements */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--blaith-primary), var(--blaith-primary-light));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--blaith-gold), #f59e0b);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
    z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 400px;
    }
}

/* ==========================================
   PARTNERS CREDENTIALS SECTION
   Dark style like Dulsco credentials
   ========================================== */

.credentials-strip {
    background: #0B1120;
    padding: 60px 0 40px;
    position: relative;
}

.credentials-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blaith-primary), transparent);
}

.credentials-strip .container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: left;
    letter-spacing: 1px;
}

.credentials-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.credential-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.credential-badge:hover {
    background: rgba(1, 128, 1, 0.1);
    border-color: var(--blaith-primary);
    transform: translateY(-2px);
}

.credential-badge img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.credential-badge:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .credentials-strip {
        padding: 40px 0;
    }

    .credentials-strip .container h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .credentials-logos {
        gap: 15px;
        justify-content: center;
    }

    .credential-badge {
        min-width: 110px;
        height: 85px;
        padding: 20px 25px;
    }

    .credential-badge img {
        max-height: 45px;
    }
}