:root {
    /* --- Professional Beige Theme Colors --- */
    --primary-beige: #FFF0DB;
    --dark-beige: #E8D9C5;
    --accent-beige: #D4B996;
    --text-dark: #3A3A3A;
    --text-medium: #5A5A5A;
    --accent-gold: #B38B59;
    --accent-burgundy: #8B4513;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-dark: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Base Body Styles - Uses beige theme */
body {
    background-color: var(--primary-beige);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-top: 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* --- ANIMATION DEFINITIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- Header Styles --- */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-beige);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-burgundy);
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-burgundy);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--accent-burgundy);
}

/* --- Home Page Content Styles --- */

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--dark-beige) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="%23B38B59" fill="none" stroke-width="0.5" opacity="0.1"/><path d="M0,30 Q25,20 50,30 T100,30" stroke="%238B4513" fill="none" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--accent-burgundy);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 10px;
    box-shadow: 0 6px 20px var(--shadow);
}

.instagram-btn {
    background: linear-gradient(45deg, #E1306C, #833AB4);
    color: white;
}

.contact-btn {
    background-color: var(--accent-burgundy);
    color: white;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #C13584, #5851DB);
}

.contact-btn:hover {
    background-color: #6B3310;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-medium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--primary-beige);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid rgba(179, 139, 89, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-dark);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-burgundy);
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--accent-burgundy);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background-color: var(--primary-beige);
}

/* Profile Card Styles */
.profile-card-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 620px;
    border-radius: 16px;
    z-index: 1;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.profile-card-container:hover {
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.card-bg-layer {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    outline: 2px solid var(--white);
}

.blob {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--accent-beige);
    opacity: 0.5;
    filter: blur(80px);
    animation: blob-bounce 15s infinite ease;
}

@keyframes blob-bounce {
    0% {
        transform: translate3d(0, 0, 0);
    }
    25% {
        transform: translate3d(100%, 0, 0);
    }
    50% {
        transform: translate3d(100%, 100%, 0);
    }
    75% {
        transform: translate3d(0, 100%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.profile-card-container iframe {
    position: relative;
    z-index: 3;
    border: none !important;
    border-radius: 8px;
    max-width: 100%;
}

/* === FAQ PAGE STYLES === */

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--dark-beige) 100%);
    position: relative;
    overflow: hidden;
}

.page-header h2 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--accent-burgundy);
    position: relative;
    display: inline-block;
}

.page-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 25px auto 0;
    color: var(--text-medium);
}

/* Page Header Enhancement for Contact Page */
.page-header .header-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.page-header .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    opacity: 0.6;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-burgundy);
    border-radius: 50%;
    margin: 0 15px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 80px;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--primary-beige);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid rgba(179, 139, 89, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px var(--shadow-dark);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: all 0.3s ease;
    color: var(--accent-burgundy);
}

.faq-question:hover {
    background-color: rgba(255, 240, 219, 0.3);
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 25px 0;
    color: var(--text-medium);
    line-height: 1.8;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.faq-answer strong {
    color: var(--accent-burgundy);
    font-weight: 600;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--dark-beige) 100%);
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent-burgundy);
}

.contact-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* === CONTACT PAGE STYLES === */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro h3 {
    font-size: 2.2rem;
    color: var(--accent-burgundy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-intro h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-intro p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Card */
.contact-info-card,
.contact-form-card {
    background-color: var(--primary-beige);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(179, 139, 89, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.12);
    transform: translateY(-5px);
}

.contact-card-header,
.form-card-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.contact-card-header h4,
.form-card-header h4 {
    font-size: 1.8rem;
    color: var(--accent-burgundy);
    margin-bottom: 10px;
}

.contact-card-header p,
.form-card-header p {
    color: var(--text-medium);
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.08);
}

.method-icon .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instagram-bg {
    background: linear-gradient(45deg, #E1306C, #833AB4);
}

.email-bg {
    background: linear-gradient(45deg, var(--accent-burgundy), var(--accent-gold));
}

.phone-bg {
    background: linear-gradient(45deg, #2A8C82, #3DB4A8);
}

.method-details h5 {
    font-size: 1.3rem;
    color: var(--accent-burgundy);
    margin-bottom: 8px;
    font-weight: 600;
}

.method-details p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-burgundy);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: rgba(139, 69, 19, 0.05);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: rgba(139, 69, 19, 0.1);
    color: var(--accent-burgundy);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 0.8rem;
}

/* Business Hours */
.contact-hours {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.contact-hours h6 {
    font-size: 1.1rem;
    color: var(--accent-burgundy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-hours h6 i {
    color: var(--accent-gold);
}

.contact-hours p {
    color: var(--text-medium);
    margin-bottom: 8px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.contact-hours p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--accent-burgundy);
    font-weight: 500;
    font-size: 1rem;
}

.form-group label i {
    color: var(--accent-gold);
    width: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(179, 139, 89, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(58, 58, 58, 0.5);
}

.input-focus-line,
.textarea-focus-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.form-group.focused .input-focus-line,
.form-group.focused .textarea-focus-line {
    transform: scaleX(1);
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select select {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(179, 139, 89, 0.1);
}

.custom-select i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Form Icons */
.form-group::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 42px;
    color: var(--accent-gold);
    font-size: 1rem;
    pointer-events: none;
}

.form-group:nth-child(1)::before { content: "\f007"; } /* User icon */
.form-group:nth-child(2)::before { content: "\f0e0"; } /* Envelope icon */
.form-group:nth-child(3)::before { content: "\f02b"; } /* Tag icon */
.form-group:nth-child(4)::before { content: "\f303"; } /* Edit icon */

/* Submit Button */
.form-footer {
    margin-top: 30px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--accent-burgundy), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-burgundy));
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 15px;
    text-align: center;
    opacity: 0.8;
}

/* Success Message */
.success-message {
    background: linear-gradient(45deg, rgba(42, 140, 130, 0.1), rgba(61, 180, 168, 0.1));
    border-left: 4px solid #2A8C82;
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideIn 0.5s ease;
    transition: all 0.3s ease;
}

.success-message i {
    font-size: 2rem;
    color: #2A8C82;
}

.success-message h4 {
    color: var(--accent-burgundy);
    margin-bottom: 5px;
}

.success-message p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.95rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Connect Section */
.social-connect {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--dark-beige) 100%);
    text-align: center;
}

.social-content {
    max-width: 700px;
    margin: 0 auto;
}

.social-content h3 {
    font-size: 2.2rem;
    color: var(--accent-burgundy);
    margin-bottom: 15px;
}

.social-content p {
    color: var(--text-medium);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.instagram-social {
    background: linear-gradient(45deg, #E1306C, #833AB4);
    color: white;
}

.pinterest-social {
    background: linear-gradient(45deg, #BD081C, #E60023);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.instagram-social:hover {
    background: linear-gradient(45deg, #C13584, #5851DB);
}

.pinterest-social:hover {
    background: linear-gradient(45deg, #A5061A, #CC001F);
}

/* === FOOTER STYLES === */
footer {
    background-color: var(--accent-burgundy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--accent-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-answer p {
        padding: 20px 0;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-card-header,
    .form-card-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .contact-method {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
    }
    
    .method-icon {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .contact-link {
        justify-content: center;
    }
    
    .section-intro h3 {
        font-size: 1.9rem;
    }
    
    .social-content h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .section-intro h3,
    .social-content h3 {
        font-size: 1.7rem;
    }
    
    .contact-card-header h4,
    .form-card-header h4 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
        width: 40px;
    }
    
    nav a {
        font-size: 0.9rem;
    }
}
