/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #4a8b8b 0%, #2c5f5f 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 20px 60px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
    margin-top: 30px;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    /* width: 80px; */
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 32px;
    font-weight: 700;
    color: #eba53a;
    letter-spacing: -0.5px;
}

.header-controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}


.settings-btn {
    background: none;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.settings-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.search-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* max-width: 1000px; */
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;

}

.search-title {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: -1.2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(235, 165, 58, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(235, 165, 58, 0.8) 50%, 
        transparent 100%);
    border-radius: 2px;
}

.search-form {
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    padding: 24px 30px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
    height: 130px;
}

.search-input:focus {
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-btn {
    background: linear-gradient(135deg, #eba53a 0%, #d4942a 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(235, 165, 58, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(235, 165, 58, 0.4);
}

.search-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    margin: 60px 0 40px 0;
    width: 100%;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
}

.divider-content {
    padding: 0 30px;
    flex-shrink: 0;
}

.divider-content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(74, 139, 139, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Process Section */
.process-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(235, 165, 58, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 148, 42, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.05) 75%,
            rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(1.2);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(235, 165, 58, 0.1) 60deg,
        transparent 120deg,
        rgba(212, 148, 42, 0.08) 180deg,
        transparent 240deg,
        rgba(235, 165, 58, 0.1) 300deg,
        transparent 360deg
    );
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.process-section > * {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CTA Button Styles */
.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #eba53a 0%, #d4942a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 32px rgba(235, 165, 58, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(235, 165, 58, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn svg {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Gallery Heading Styles */
.gallery-heading {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.brand-accent {
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.brand-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(235, 165, 58, 0.8) 20%, 
        rgba(235, 165, 58, 1) 50%, 
        rgba(235, 165, 58, 0.8) 80%, 
        transparent 100%);
    border-radius: 1px;
}

/* Image Gallery Styles */
.image-gallery {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.step-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eba53a 0%, #d4942a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(235, 165, 58, 0.4);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-description {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 280px;
    padding: 0 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(235, 165, 58, 0.1) 0%, 
        rgba(107, 182, 182, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 16px;
}

.gallery-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(235, 165, 58, 0.3);
}

.gallery-image:hover::before {
    opacity: 1;
}

.loading {
    text-align: center;
    padding: 30px;
    font-size: 20px;
    color: #6bb6b6;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loading.show {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(107, 182, 182, 0.2);
    border-top: 4px solid #6bb6b6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    background: rgba(255, 99, 99, 0.1);
    color: #ff6363;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: none;
    border: 1px solid rgba(255, 99, 99, 0.2);
    backdrop-filter: blur(10px);
}

.results {
    margin-top: 40px;
    display: none;
}

.results h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 300;
}

.result-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.offer-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.offer-image {
    flex-shrink: 0;
    width: 220px;
}

.offer-content {
    flex: 1;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.offer-advertiser {
    color: #6bb6b6;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.offer-similarity {
    color: #eba53a;
    font-size: 12px;
    font-weight: 600;
    background: rgba(235, 165, 58, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: none;
}

.offer-title {
    color: #4a8b8b;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.offer-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.offer-discount {
    background: linear-gradient(135deg, #eba53a 0%, #d4942a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(235, 165, 58, 0.3);
}

@media (max-width: 768px) {
    .logo {
        max-width: 180px;
        height: auto;
    }
    .container {
        padding: 20px 30px 30px;
    }
    
    .search-title {
        font-size: 40px;
        letter-spacing: -0.8px;
        margin-bottom: 40px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .search-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .search-input {
        padding: 20px 25px;
        font-size: 18px;
    }
    .search-section {
        justify-content: flex-start;
    }
    
    .offer-card {
        flex-direction: column;
    }
    
    .offer-image {
        width: 100%;
    }
    
    .brand-text {
        font-size: 24px;
    }
    
    .section-divider {
        margin: 40px 0 30px 0;
    }
    
    .divider-content {
        padding: 0 20px;
    }
    
    .divider-content span {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .process-section {
        padding: 40px 20px;
        margin: 0 -10px;
        border-radius: 24px;
        border-width: 1px;
    }
    
    .gallery-heading {
        font-size: 22px;
        margin: 0 0 30px 0;
        letter-spacing: 0.3px;
    }
    
    .cta-container {
        margin-top: 40px;
        padding-top: 25px;
    }
    
    .learn-more-btn {
        padding: 14px 28px;
        font-size: 14px;
        gap: 6px;
    }
    
    .learn-more-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .image-gallery {
        flex-direction: column;
        gap: 40px;
        margin: 30px 0;
        align-items: center;
    }
    
    .step-container {
        margin-bottom: 20px;
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .step-badge {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: -12px;
        left: -12px;
    }
    
    .step-description {
        font-size: 14px;
        margin-top: 15px;
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .gallery-image {
        height: auto;
        width: 100%;
        max-width: 350px;
        max-height: 300px;
        margin: 0 auto;
        display: block;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 12px;
    }
    
    .gallery-image:hover {
        transform: none;
        box-shadow: none;
    }
    
    .gallery-image::before {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background: rgba(44, 95, 95, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding: 60px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #eba53a;
}

.footer-logo {
    max-width: 80%;
    /* height: 100px; */
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

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

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #eba53a;
    background: rgba(235, 165, 58, 0.1);
    border-color: rgba(235, 165, 58, 0.3);
    transform: translateY(-2px);
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer {
        margin-top: 60px;
        padding: 40px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-logo {
        margin: 0 auto 20px auto;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Settings Menu Styles */
.settings-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.settings-content {
    background: white;
    border-radius: 24px;
    padding: 0;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px 24px 0 0;
}

.settings-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-title svg {
    color: #eba53a;
}

.settings-title h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #6c757d;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #495057;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.settings-body {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(85vh - 100px);
}

.settings-section {
    margin-bottom: 32px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.section-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #eba53a 0%, #f39c12 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.section-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.section-description {
    margin: 0 0 24px 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 44px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group {
    position: relative;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: #eba53a;
    background: white;
    box-shadow: 0 0 0 4px rgba(235, 165, 58, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.form-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

.form-hint svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Toggle Switch Styles */
.toggle-group {
    margin-bottom: 16px;
}

.toggle-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.toggle-label:hover {
    background: #e9ecef;
    border-color: rgba(235, 165, 58, 0.2);
}

.toggle-switch {
    position: relative;
    flex-shrink: 0;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    display: block;
    width: 48px;
    height: 28px;
    background: #dee2e6;
    border-radius: 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: linear-gradient(135deg, #eba53a 0%, #f39c12 100%);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-content {
    flex: 1;
}

.toggle-title {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 4px;
}

.toggle-description {
    display: block;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

.form-group button {
    background: #6bb6b6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.form-group button:hover {
    background: #4a8b8b;
}
