/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(40,32,86,0.95) 0%, rgba(239,48,147,0.85) 100%),
                url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.info-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-form-wrapper {
    background: white;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(239, 48, 147, 0.15);
    outline: none;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check-label {
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: white;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 35px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link i {
    font-size: 1.5rem;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.tiktok:hover {
    background: #000;
    border-color: #000;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

/* FAQ Links Section */
.faq-links-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-quick-links {
    background: white;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.faq-quick-links h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-quick-links p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.quick-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.quick-link-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-info-section,
    .contact-form-section,
    .social-section,
    .faq-links-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link {
        justify-content: center;
    }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-quick-links {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 45vh;
        min-height: 350px;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }
}

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(40,32,86,0.5) 0%, rgba(239,48,147,0.6) 100%),
                url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Section */
.faq-search-section {
    padding: 60px 0 40px;
    background: var(--light-bg);
}

.search-box-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.faq-search-input {
    width: 100%;
    padding: 20px 25px 20px 60px;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(239,48,147,0.2);
}

/* Quick Links Section */
.quick-links-section {
    padding: 40px 0 60px;
    background: var(--light-bg);
}

.quick-link-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 100%;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.quick-link-card.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(40,32,86,0.05), rgba(239,48,147,0.05));
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.quick-link-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.quick-link-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 60px 0 80px;
    background: white;
}

.faq-category {
    margin-bottom: 60px;
    opacity: 1;
    transition: all 0.3s ease;
}

.faq-category.hidden {
    display: none;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

/* FAQ Items */
.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: rgba(239,48,147,0.05);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(40,32,86,0.05), rgba(239,48,147,0.05));
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Highlight matched text */
.highlight {
    background: linear-gradient(135deg, rgba(239,48,147,0.2), rgba(255,215,0,0.2));
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

/* Still Have Questions Section */
.still-questions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.still-questions-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.still-questions-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: white;
    color: var(--primary-color);
}

.btn-primary-custom,
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.no-results p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 2rem;
    }

    .faq-hero-content p {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-question,
    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .still-questions-section h2 {
        font-size: 1.8rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .quick-link-card {
        padding: 20px 15px;
    }

    .quick-link-card i {
        font-size: 2rem;
    }

    .quick-link-card h5 {
        font-size: 0.95rem;
    }
}

/* Animation for search results */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.search-result {
    animation: fadeIn 0.3s ease;
}

/* Auth Section */
.auth-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(40,32,86,0.05) 0%, rgba(239,48,147,0.05) 100%);
    min-height: calc(100vh - 200px);
}

.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    background: #f8f9fa;
}

.auth-tab {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.auth-tab:hover {
    background: rgba(239,48,147,0.05);
    color: var(--accent-color);
}

.auth-tab.active {
    color: var(--accent-color);
    background: white;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* Form Wrapper */
.auth-form-wrapper {
    padding: 60px;
    display: none;
}

.auth-form-wrapper.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.auth-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.auth-input {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(239,48,147,0.15);
    outline: none;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--accent-color);
}

.form-text {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-label {
    color: #555;
    font-size: 0.95rem;
}

.btn-auth-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239,48,147,0.4);
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    background: white;
    padding: 0 20px;
    position: relative;
    color: #999;
    font-weight: 500;
}

.social-auth {
    display: grid;
    gap: 15px;
}

.btn-social-auth {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 10px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-social-auth:hover {
    border-color: var(--accent-color);
    background: rgba(239,48,147,0.05);
    transform: translateY(-2px);
}

.btn-social-auth i {
    font-size: 1.2rem;
}

.auth-switch {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 1rem;
}

.auth-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Auth Benefits */
.auth-benefits {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.benefit-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Success/Error Messages */
.auth-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.auth-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }
    
    .auth-tab {
        padding: 16px;
        font-size: 1rem;
    }
    
    .auth-form-wrapper {
        padding: 40px 30px;
    }
    
    .auth-title {
        font-size: 2rem;
    }
    
    .auth-subtitle {
        font-size: 1rem;
    }
    
    .auth-benefits {
        padding: 30px 20px;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-tab {
        padding: 14px 10px;
        font-size: 0.9rem;
    }
    
    .auth-form-wrapper {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 1.6rem;
    }
    
    .btn-auth-primary {
        padding: 14px;
        font-size: 1rem;
    }
    
    .social-auth {
        gap: 10px;
    }
    
    .btn-social-auth {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Decorative Background Elements */
.cta-section::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 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.95;
}

.cta-feature i {
    font-size: 1.3rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.05rem;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}