/* SelectSpin game Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.age-modal {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid #feff00;
}

.age-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1);
}

.age-content h2 {
    color: #feff00;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-content p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #e0e0e0;
}

.age-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.age-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #feff00;
}

.age-checkbox label {
    font-size: 14px;
    color: #ffffff;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-accept, .btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-accept {
    background: #01b676;
    color: white;
    border: 2px solid #feff00;
}

.btn-accept:hover {
    background: transparent;
    color: #feff00;
}

.btn-reject {
    background: #dc3545;
    color: white;
}

.btn-reject:hover {
    background: #c82333;
}

.error-msg {
    color: #dc3545;
    font-size: 14px;
    display: none;
}

/* Header */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

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

.logo {
    height: 80px;
    filter: brightness(0) invert(1);
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #01b676;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(1, 182, 118, 0.1) 0%, rgba(254, 255, 0, 0.05) 100%);
    text-align: center;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #feff00, #01b676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(254, 255, 0, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* game Section */
.games-section {
    padding: 60px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.5fr;
    gap: 20px;
    background: linear-gradient(45deg, #feff00, #01b676);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #000;
}

.header-col {
    text-align: center;
    font-size: 16px;
}

.game-card {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.5fr;
    gap: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #feff00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.rank-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #feff00;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.game-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
}

.game-bonus {
    text-align: center;
}

.bonus-text strong {
    display: block;
    font-size: 22px;
    color: #feff00;
    margin-bottom: 5px;
}

.bonus-subtitle {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.payment-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.min-deposit {
    font-size: 12px;
    color: #a0a0a0;
}

.game-rating {
    text-align: center;
}

.rating-score {
    font-size: 36px;
    font-weight: 800;
    color: #01b676;
    margin-bottom: 10px;
}

.stars {
    color: #feff00;
    font-size: 18px;
}

.game-action {
    text-align: center;
}

.play-btn {
    background: #01b676;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid #feff00;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.play-btn:hover {
    background: transparent;
    color: #feff00;
    transform: scale(1.05);
}

/* Mobile game Card */
.game-card-mobile {
    display: none;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    border: 2px solid #feff00;
    margin-bottom: 20px;
    overflow: hidden;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(254, 255, 0, 0.1);
}

.mobile-logo img {
    max-width: 120px;
    max-height: 60px;
}

.mobile-rating .score {
    font-size: 24px;
    font-weight: 800;
    color: #01b676;
}

.mobile-rating .stars {
    color: #feff00;
    font-size: 14px;
}

.mobile-content {
    padding: 20px;
    text-align: center;
}

.mobile-bonus strong {
    display: block;
    font-size: 18px;
    color: #feff00;
    margin-bottom: 15px;
}

.mobile-payments {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mobile-payments img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.mobile-deposit {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.mobile-play-btn {
    background: #01b676;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid #feff00;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-play-btn:hover {
    background: transparent;
    color: #feff00;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #feff00;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(254, 255, 0, 0.2);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(1, 182, 118, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

.responsible-gaming {
    margin-top: 60px;
    text-align: center;
}

.responsible-gaming h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #feff00;
}

.responsible-gaming p {
    font-size: 16px;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.disclosure-box {
    background: rgba(1, 182, 118, 0.1);
    border: 1px solid #01b676;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.disclosure-box h4 {
    color: #01b676;
    margin-bottom: 15px;
    font-size: 20px;
}

.disclosure-box p {
    font-size: 14px;
    margin: 0;
}

/* Footer */
.main-footer {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 50px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #feff00;
}

.footer-content > p {
    margin-bottom: 30px;
    color: #a0a0a0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #01b676;
}

.contact-info {
    margin-bottom: 30px;
    color: #a0a0a0;
    font-size: 14px;
}

.contact-info p {
    margin-bottom: 5px;
}

.copyright {
    color: #666;
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .table-header {
        display: none;
    }

    .game-card {
        display: none;
    }

    .game-card-mobile {
        display: block;
    }

    .main-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .main-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .age-modal {
        padding: 30px 20px;
    }

    .age-content h2 {
        font-size: 24px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-accept, .btn-reject {
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .mobile-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .responsible-gaming h3 {
        font-size: 24px;
    }

    .disclosure-box {
        padding: 20px;
    }
}

/* Footer Enhanced Styles */
.main-footer {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 60px 0 30px;
    border-top: 2px solid #333;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: #feff00;
    font-weight: 800;
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(1, 182, 118, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(1, 182, 118, 0.2);
}

/* Regulatory Logos Section */
.regulatory-logos {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    border: 2px solid #feff00;
}

.regulatory-logos h4 {
    color: #feff00;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.regulatory-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.regulatory-logo:hover {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(254, 255, 0, 0.3);
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-navigation h4,
.footer-security h4 {
    color: #01b676;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-list a:hover {
    color: #feff00;
    padding-left: 5px;
}

.footer-nav-list a:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #01b676;
    border-radius: 50%;
    flex-shrink: 0;
}

.security-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.security-icon {
    width: 40px;
    height: 40px;
    filter: invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.security-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: invert(1) sepia(1) hue-rotate(60deg) saturate(3);
}

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: 2px solid #01b676;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.disclaimer-box h4 {
    color: #01b676;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.disclaimer-box p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: #feff00;
}

/* Contact Info */
.contact-info {
    background: rgba(254, 255, 0, 0.05);
    border: 1px solid rgba(254, 255, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.contact-info h4 {
    color: #feff00;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.contact-details p {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #feff00;
    justify-content: center;
}

.contact-details em {
    font-size: 14px;
    color: #a0a0a0;
    text-align: center;
    display: block;
    margin-top: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    flex-shrink: 0;
}

/* Responsible Gaming Resources */
.responsible-gaming-resources {
    background: linear-gradient(145deg, #dc3545, #c82333);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.responsible-gaming-resources h4 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 800;
}

.help-resources {
    max-width: 600px;
    margin: 0 auto;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.resource-icon {
    width: 40px;
    height: 40px;
    filter: invert(1);
    flex-shrink: 0;
}

.resource-text strong {
    color: #ffffff;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.resource-text p {
    color: #f8f9fa;
    font-size: 14px;
    margin: 0;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.resource-links a {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.resource-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.help-phone {
    background: #28a745 !important;
    border-color: #28a745 !important;
}

.help-phone:hover {
    background: #218838 !important;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.copyright {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.last-updated {
    color: #a0a0a0;
    font-size: 12px;
}

#lastUpdateDate {
    color: #01b676;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logos-grid {
        gap: 25px;
    }

    .regulatory-logo {
        height: 50px;
    }

    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-content h3 {
        font-size: 28px;
    }

    .footer-disclaimer {
        font-size: 14px;
        padding: 15px;
    }

    .regulatory-logos {
        padding: 20px;
    }

    .regulatory-logos h4 {
        font-size: 20px;
    }

    .logos-grid {
        gap: 15px;
    }

    .regulatory-logo {
        height: 40px;
    }

    .disclaimer-box,
    .contact-info,
    .responsible-gaming-resources {
        padding: 20px;
    }

    .resource-item {
        flex-direction: column;
        text-align: center;
    }

    .resource-links {
        flex-direction: column;
        gap: 10px;
    }

    .resource-links a {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-content h3 {
        font-size: 24px;
    }

    .footer-disclaimer {
        font-size: 13px;
    }

    .regulatory-logos h4 {
        font-size: 18px;
    }

    .logos-grid {
        flex-direction: column;
        gap: 15px;
    }

    .security-badges {
        flex-direction: column;
        gap: 15px;
    }

    .contact-details p {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

.regulator-logo {
    height: 60px;
    width: auto;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(1, 182, 118, 0.05) 0%, rgba(254, 255, 0, 0.02) 100%);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
    margin-top: -60px;
}

.contact-form-header {
    background: linear-gradient(45deg, #01b676, #feff00);
    padding: 25px 35px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
    color: #000;
    margin-bottom: 0;
}

.form-subtitle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.contact-form-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #000;
}

.contact-form {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 35px;
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(254, 255, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-bottom-color: #feff00;
    box-shadow: 0 2px 0 rgba(254, 255, 0, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.form-control.error {
    border-bottom-color: #dc3545;
    box-shadow: 0 2px 0 rgba(220, 53, 69, 0.3);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    filter: invert(1);
    pointer-events: none;
    opacity: 0.6;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    padding: 15px 0;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    display: block;
    opacity: 1;
}

.btn-submit {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(45deg, #01b676, #feff00);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 182, 118, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    padding: 40px 0;
}

.contact-content h2 {
    font-size: 36px;
    color: #feff00;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-content > p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(1, 182, 118, 0.2);
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text strong {
    color: #01b676;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.contact-text p {
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.contact-text small {
    color: #a0a0a0;
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.info-note {
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    flex-shrink: 0;
}

.info-note p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

/* Success Modal */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.success-modal {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid #01b676;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: invert(50%) sepia(96%) saturate(1458%) hue-rotate(87deg) brightness(96%) contrast(101%);
}

.success-content h2 {
    color: #01b676;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 800;
}

.success-content p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

.btn-close-success {
    padding: 12px 30px;
    background: #01b676;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-close-success:hover {
    background: #018f5f;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        margin-top: 0;
        order: 2;
    }

    .contact-info-wrapper {
        order: 1;
    }

    .contact-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-header {
        padding: 20px 25px;
        border-radius: 20px;
    }

    .contact-form {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-form-header h3 {
        font-size: 20px;
    }

    .contact-content h2 {
        font-size: 24px;
    }

    .contact-content > p {
        font-size: 16px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .success-modal {
        padding: 30px 20px;
    }

    .success-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-form-header {
        padding: 15px 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-control {
        font-size: 14px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 15px 20px;
    }
}