/* style.css */

/* Imports the Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Main Content Container (for social/contact pages) */
.review-funnel-container, .contact-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    text-align: center;
    margin: 2rem auto;
}

/* Logo Styling */
.review-funnel-logo {
    max-width: 300px; /* Twice as big as the previous 150px */
    height: auto;
    margin-bottom: -3rem; /* Adjusted bottom margin */
}

/* Headings and Paragraphs */
.review-funnel-heading {
    color: #15316f;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.intro-sentence {
    display: block;
    font-weight: 700;
    color: #15316f;
    margin-bottom: 1.5rem;
}

/* Horizontal Rule for separation */
hr {
    border: 0;
    height: 1px;
    background: #e9e9e9;
    margin: 1.5rem auto;
    width: 80%;
}

/* Social and Other Links Container */
.review-links {
    margin-top: 2rem;
}

/* Generic Button Styles (applies to all buttons) */
.review-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    max-width: 300px;
    padding: 0.8rem 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white; /* All buttons will have white text */
    transition: background-color 0.3s, transform 0.2s;
}

.review-links a:hover {
    transform: translateY(-2px);
}

.review-links a i {
    margin-right: 0.75rem;
    font-size: 1.3rem;
}

/* --- Social & CTA Button Specific Styles with Brand Colors --- */
.review-links a.facebook {
    background-color: #1877F2;
}

.review-links a.facebook:hover {
    background-color: #1461c6;
}

.review-links a.instagram {
    background: linear-gradient(
        45deg, 
        #feda75, 
        #fa7e1e, 
        #d62976, 
        #962fbf, 
        #4f5bd5
    );
}

.review-links a.instagram:hover {
    filter: brightness(1.1);
}

.review-links a.linkedin {
    background-color: #0A66C2;
}

.review-links a.linkedin:hover {
    background-color: #084c91;
}

.review-links a.google-business {
    background-color: #4285F4;
}

.review-links a.google-business:hover {
    background-color: #3b76d6;
}

/* Testimonials and Contact Us (Using your brand blue) */
.review-links a.testimonials,
.review-links a.contact {
    background-color: #15316f; 
}

.review-links a.testimonials:hover,
.review-links a.contact:hover {
    background-color: #0d2146; 
}

/* --- Contact Form Specific Styles --- */
.contact-form-section {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem; 
    text-align: left;
}

.form-group label {
    display: block; 
    margin-bottom: 0.5rem;
    color: #15316f;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    border-color: #15316f; 
    outline: none; 
    box-shadow: 0 0 5px rgba(21, 49, 111, 0.5); 
}

.form-input.textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    background-color: #FF8C00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #CC7000;
}

/* "Go Back" Button Styling */
.go-back-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #e9e9e9;
    color: #15316f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.go-back-button:hover {
    background-color: #d1d1d1;
}

.go-back-button i {
    margin-right: 0.5rem;
}
