/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.cart-link {
    position: relative;
}

#cart-count {
    background: #fff;
    color: #ff6b9d;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
}

.placeholder-image {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    max-width: 400px;
    margin: 0 auto;
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: #fff;
}

.categories h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-icon {
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.category-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: #f8f9fa;
}

.featured-products h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.add-to-cart {
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #c44569;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #ff6b9d;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b9d;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff6b9d;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff6b9d;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bbb;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Products Page Styles */
.products-page {
    margin-top: 80px;
    padding-top: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-title {
    text-align: center;
    margin-bottom: 2rem;
}

.category-title h2 {
    font-size: 1.8rem;
    color: #ff6b9d;
}

.no-products {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

/* About Page Styles */
.about-page {
    margin-top: 80px;
    padding-top: 0;
    min-height: 100vh;
}

.about-page .page-header {
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.about-page .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,107,157,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

.about-page .page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.about-page .page-header p {
    color: #666;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Story Section */
.brand-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff, #fafafa);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-text h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.story-image .placeholder-image {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 25px;
    padding: 4rem;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.story-image .placeholder-image:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    opacity: 0.1;
}

.values::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #c44569, #ff6b9d);
    border-radius: 50%;
    opacity: 0.1;
}

.values h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
}

.value-icon {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: #fff;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.mission-text ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.mission-text li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
    padding-left: 2rem;
    position: relative;
}

.mission-text li::before {
    content: '💖';
    position: absolute;
    left: 0;
    top: 0;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8e8ff, #ffeef8);
}

.team h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
}

.member-image {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.role {
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member p:not(.role) {
    color: #666;
    line-height: 1.7;
}

/* Awards Section */
.awards {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    text-align: center;
}

.awards h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.award-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.award-item i {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.award-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.award-item p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .story-image .placeholder-image {
        transform: rotate(0deg);
        padding: 3rem;
    }
    
    .values-grid,
    .team-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .about-page .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2,
    .values h2,
    .mission h2,
    .team h2,
    .awards h2 {
        font-size: 2rem;
    }
    
    .mission-text {
        padding: 2rem;
    }
    
    .values,
    .team,
    .awards,
    .mission,
    .brand-story {
        padding: 3rem 0;
    }
}

/* Contact Page Styles */
.contact-page {
    margin-top: 80px;
    padding-top: 0;
    min-height: 100vh;
}

.contact-page .page-header {
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.contact-page .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,107,157,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.contact-page .page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-page .page-header p {
    color: #666;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin: 5rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(196, 69, 105, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.contact-form-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-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;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #f8e8ff, #ffeef8);
    padding: 3rem;
    border-radius: 25px;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    opacity: 0.1;
}

.contact-info-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 100px; /* Ensure consistent height */
    overflow: hidden; /* Prevent content overflow */
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
}

.info-icon {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    font-size: 1.2rem;
}

.info-content {
    flex: 1;
    min-width: 0; /* Allow text to wrap properly */
}

.info-content h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    margin: 0 0 0.25rem 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    font-size: 0.95rem; /* Slightly smaller for long emails */
}

/* Social Section */
.social-section {
    border-top: 2px solid rgba(255, 107, 157, 0.2);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.social-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Create a horizontal container for social links */
.social-section .social-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    margin: 0; /* Remove margins since we're using gap */
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.social-link i {
    font-size: 1.3rem;
    color: white;
}

.social-link span {
    display: none; /* Hide the text labels */
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 50%;
    opacity: 0.05;
}

.faq-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ff6b9d;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.15);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
        padding: 0 1rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section,
    .contact-info-section,
    .faq-section {
        padding: 2rem;
    }
    
    .contact-page .page-header h1 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-section .social-links-container {
        gap: 0.8rem;
        justify-content: flex-start;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 1.2rem;
    }
    
    .info-item {
        padding: 1rem;
        flex-direction: row; /* Keep horizontal layout on mobile */
        min-height: 80px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        font-size: 1.1rem;
    }
    
    .info-content {
        flex: 1;
        min-width: 0;
    }
    
    .info-content p {
        font-size: 0.9rem;
        word-break: break-all; /* Force break for long emails on mobile */
    }
}
