/* Premium Landing Page Styles */
:root {
    --primary-color: #f6a21e;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --text-dark: #333;
    --text-light: #fff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #f6a21e 0%, #ff9800 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

/* Typography Overrides */
body {
    font-family: 'Poppins', sans-serif;

    /* Fallback/Base */
}

h1,

h2,

h3,

h4 {
    font-family: 'Outfit', 'Poppins', sans-serif;

    /* Utilize Outfit if loaded, else Poppins */
    font-weight: 700;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-strong);
    border-radius: 16px;
}

/* Header */
.premium-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.btn-cta-header {
    background: var(--gradient-gold);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(246, 162, 30, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 162, 30, 0.4);
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background: url('../img/banner/ban-min.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(87deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 0%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 5;

    /* Ensure content sits above the overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Form Styles */
.lead-form-card {
    background: #ffffff !important;

    /* Force white background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lead-form-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.form-control-premium {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s;
    font-size: 0.95rem;
    width: 100%;
}

.form-control-premium:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(246, 162, 30, 0.1);
    outline: none;
    color: #1a1a1a;
}

.form-control-premium::placeholder {
    color: #999;
}

select.form-control-premium {
    color: #333;
    appearance: none;

    /* Remove default arrow to style if needed, or keep for simplicity */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.btn-submit-premium {
    width: 100%;
    background: var(--gradient-gold);
    color: white;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(246, 162, 30, 0.4);
}

.btn-submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 162, 30, 0.5);
    background: linear-gradient(135deg, #ff9800 0%, #f6a21e 100%);
}

/* Authority Section */
.authority-section {
    padding: 80px 0;
    background: #fff;
}

.authority-box {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
    height: 100%;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.authority-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.authority-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-header {
    background: var(--gradient-dark);
    color: white;
    padding: 20px;
}

.service-body {
    padding: 25px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-list li:before {
    content: "\f00c";

    /* FontAwesome check */
    font-family: FontAwesome;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
}

/* Projects Grid */
.portfolio-section {
    padding: 80px 0;
}

.project-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 300px;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}

.project-grid-item:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.location-tag {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

/* Testimonials */
.testimonials-modern {
    padding: 80px 0;
    background: #111;
    color: white;
    background-image: radial-gradient(circle at top right, #2a2a2a 0%, #111 40%);
}

.testimonial-modern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header.active {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion-body-content {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .lead-form-card {
        margin-top: 40px;
    }

    .header-container {
        justify-content: center;
    }

    .project-grid-item {
        height: 250px;
    }
}

/* Authority Strip - Premium Style */
.authority-strip {
    background: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-color);
}

.authority-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.authority-item:hover {
    transform: translateY(-5px);
}

.authority-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(246, 162, 30, 0.2);
    transition: all 0.3s ease;
}

.authority-item:hover i {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(246, 162, 30, 0.4);
}

.authority-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}