/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8f9f5; /* Light natural background */
    background-image: linear-gradient(to bottom, #f8f9f5, #e8f6e4);
}

.container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
    border: 1px solid rgba(168, 195, 165, 0.3);
}

/* Profile Section */
.profile-section {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(232, 246, 228, 0.3), rgba(255, 255, 255, 0));
}

.profile-image-container {
    position: relative;
    width: 180px;
    height: 100px;
    margin: 0 auto 15px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: contain;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #1DA1F2;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid white;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #4a7a4a; /* Richer green */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.tagline {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #4a7a4a; /* Richer green */
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #6d9c6d; /* Brighter on hover */
}

/* Links Section */
.links-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(168, 195, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.link-button.no-bg {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.link-button.no-bg:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.link-button::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.7s ease;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #f9fcf9;
}

.link-button:hover::before {
    left: 100%;
}

.button-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    background-color: #4a7a4a; /* Richer green */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.youtube-icon {
    background-color: #FF0000;
}

.help-icon {
    background-color: #4285F4;
}

.happs-icon {
    background-color: #ff6b9d; /* More vibrant pink */
    background-image: linear-gradient(45deg, #ff6b9d, #ff8fb3);
}

.amazon-icon {
    background-color: #FF9900;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(3px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    margin: 30px auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
    background-image: linear-gradient(to bottom, #ffffff, #f9fcf9);
    border: 1px solid rgba(168, 195, 165, 0.3);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(249, 252, 249, 0.9);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    color: #333;
    transform: rotate(90deg);
    background-color: #f0f5f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.modal h2 {
    color: #4a7a4a;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.modal h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #4a7a4a, #a8c3a5);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #444;
    font-size: 15px;
    transition: color 0.3s ease;
}

select, input[type="text"], input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9fcf9;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

select:hover, input[type="text"]:hover, input[type="email"]:hover {
    border-color: #a8c3a5;
}

select:focus, input[type="text"]:focus, input[type="email"]:focus {
    outline: none;
    border-color: #4a7a4a;
    box-shadow: 0 0 0 3px rgba(74, 122, 74, 0.2);
    background-color: #fff;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a7a4a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.submit-btn {
    background: linear-gradient(to right, #4a7a4a, #5d8a5d);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 122, 74, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #3d6a3d, #4a7a4a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 122, 74, 0.4);
}

.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(74, 122, 74, 0.3);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover::after {
    opacity: 1;
    animation: shimmerButton 1.5s infinite;
}

@keyframes shimmerButton {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input {
    margin-right: 5px;
}

.hidden {
    display: none;
}

.submit-btn {
    background-color: #4a7a4a; /* Richer green */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background-color: #3d6a3d; /* Darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #777;
    margin-top: 30px;
}

.footer-links a {
    color: #4a7a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3d6a3d;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 480px) {
    .container {
        border-radius: 16px;
    }
    
    .profile-section {
        padding: 25px 15px;
    }
    
    .links-section {
        padding: 15px;
    }
    
    .link-button {
        padding: 14px 15px;
    }
    
    .button-icon {
        width: 36px;
        height: 36px;
        margin-right: 12px;
    }
    
    .modal-content {
        padding: 20px 15px;
        width: 90%;
        margin: 20px auto;
    }
    
    .link-button.no-bg {
        padding: 10px 12px;
    }
    
    select, input[type="text"], input[type="email"] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .modal h2 {
        font-size: 20px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.profile-image-container:hover .profile-image {
    animation: pulse 1.5s infinite;
}

/* Bottom Buttons */
.bottom-buttons {
    position: fixed; 
    bottom: 20px; 
    left: 0; 
    right: 0; 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    z-index: 100;
}

@media (max-width: 480px) {
    .bottom-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .bottom-button .button-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.bottom-button {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
}

.bottom-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.shop-now-btn {
    background: linear-gradient(45deg, #4a7a4a, #5d8a5d, #4a7a4a);
    background-size: 200% 200%;
    color: white;
    padding: 16px 32px;
    font-size: 17px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(74, 122, 74, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: gradientShift 8s ease infinite;
}

.shop-now-btn:hover {
    background: linear-gradient(45deg, #3d6a3d, #4a7a4a, #3d6a3d);
    background-size: 200% 200%;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 122, 74, 0.4), 0 0 15px rgba(74, 122, 74, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shop-now-btn .button-icon {
    background-color: white;
    color: #4a7a4a;
    margin-right: 12px;
    width: 42px;
    height: 42px;
}

.shop-now-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-now-btn:hover::after {
    opacity: 1;
    animation: shimmerButton 1.5s infinite;
}

/* Additional Animations */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1), 
        transparent);
    animation: shimmerEffect 2s ease-in-out infinite;
    border-radius: inherit;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

.skin-tone-image {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-left: 5px;
    border-radius: 50%;
    display: inline-block;
}