/* GoldSeaLand Custom Styles */

:root {
    --primary-color: #f18b1d;
    --primary-dark: #d77a18;
    --secondary-color: #040d2c;
    --dark-bg: #0a0f1a;
    --light-text: #f8f9fa;
    --muted-text: #adb5bd;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color) !important;
    padding: 15px 0;
    height: auto;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 50px;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 20px !important;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 80%;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-orange {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-orange:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-orange {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-outline-orange:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

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

/* Services Section */
.services-section {
    background-color: var(--dark-bg);
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--muted-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* About Section */
.about-section {
    background-color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-content .lead {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted-text);
    margin-bottom: 25px;
}

.about-features .feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.about-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-features .feature-item h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-features .feature-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Products Section */
.products-section {
    background-color: var(--dark-bg);
}

.product-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
}

.product-content h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--muted-text);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info .lead {
    color: var(--muted-text);
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    min-height: 48px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(241, 139, 29, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--muted-text);
}

.contact-form label {
    color: var(--muted-text);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form .form-select option {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px;
}

.contact-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-text {
    color: var(--muted-text);
    font-size: 0.85rem;
}

/* Contact Details */
.contact-details {
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.contact-card {
    margin-bottom: 30px;
}

.contact-card h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(241, 139, 29, 0.1);
    border-radius: 50%;
}

.contact-item span {
    color: var(--muted-text);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* Social Links */
.social-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 50px;
}

.footer-about p {
    color: var(--muted-text);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-links h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--muted-text);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--muted-text);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-text);
    margin: 0;
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.2);
    border-color: #198754;
    color: #198754;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    color: #dc3545;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 150px;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .navbar-collapse {
        background-color: var(--secondary-color);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Turnstile */
.cf-turnstile {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
