/*
Theme Name: Dream House Agency - Professional Domestic Workers Cairo
Description: SEO-optimized bilingual theme for Dream House Domestic Workers Agency - Cairo's leading provider of Filipino, Nigerian & Ethiopian maids, babysitters, elderly caregivers, professional cooks & personal drivers since 2014. Serving all Cairo districts including New Cairo, Maadi, Zamalek, Heliopolis. أفضل مكتب شغالات في القاهرة - عمالة منزلية فلبينية ونيجيرية وإثيوبية محترفة
Version: 2.1
Author: Dream House Domestic Workers Agency
Author URI: https://dreamhouseegypt.com
Tags: domestic-workers, maids-cairo, filipino-maids, nigerian-domestic-workers, ethiopian-caregivers, babysitters-cairo, elderly-care-egypt, professional-cooks, personal-drivers, bilingual, arabic, cairo-services
Keywords: مكتب شغالات, خدم في القاهرة, شغالة فلبينية بالساعة, عاملات منزليات في مصر, مربية أطفال, domestic workers Cairo, filipino maids Egypt, hourly housekeepers Cairo, babysitters Egypt
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Color Variables - Updated to match logo */
:root {
    --primary-pink: #ff9eb5;
    --primary-orange: #ff8c42;
    --primary-yellow: #ffb347;
    --accent-brown: #8b4513;
    --gradient-main: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow), var(--primary-pink));
    --gradient-secondary: linear-gradient(45deg, var(--primary-orange), var(--primary-pink));
    --white: #ffffff;
    --dark: #2c3e50;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    background: var(--gradient-main);
    border: none;
    border-radius: 25px;
    padding: 10px 15px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
}

/* Hidden class for language switching */
.hidden {
    display: none;
}

/* Arabic styles */
body.rtl {
    direction: rtl;
}

body.rtl .header-container {
    flex-direction: row-reverse;
}

body.rtl .floating-buttons {
    left: 20px;
    right: auto;
}

body.rtl .language-toggle {
    left: 20px;
    right: auto;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Updated Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

/* Ensure logo looks good on different backgrounds */
.logo-image {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 2px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

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

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-orange);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--gradient-secondary);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

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

.about-content p {
    font-size: 1.2rem;
    color: #555;
}

.established-badge {
    background: var(--gradient-main);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

/* Features Section */
.features-section {
    background: white;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    background: var(--light-gray);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: serif;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
}

.stars {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Company Details Section */
.company-details-section {
    background: var(--dark);
    color: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.detail-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.detail-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: #1a1a1a;
    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 h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--primary-orange);
}

.footer-slogan {
    color: var(--primary-yellow);
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Social Media Section */
.footer-social {
    margin-top: 1.5rem;
}

.social-title {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Enhanced Social Media Button Styles with Glow Effects - Replace existing social button styles */

/* Social Icons Container */
.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

/* Base Social Button Styles - Enhanced */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px; /* Rounded corners instead of full circle */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced hover effects */
.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-btn:hover::before {
    transform: scale(1);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon base styles */
.social-btn i {
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.social-btn:hover i {
    transform: scale(1.1);
}

/* WhatsApp Button - Enhanced with Glow Effect */
.social-btn.whatsapp-footer,
.social-btn.whatsapp-btn,
.floating-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    position: relative;
}

/* WhatsApp Glow Effect */
.social-btn.whatsapp-footer::after,
.social-btn.whatsapp-btn::after,
.floating-btn.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #25d366, #20b954);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.social-btn.whatsapp-footer:hover,
.social-btn.whatsapp-btn:hover,
.floating-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20b954 0%, #0f6b5c 100%);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 1.5s infinite;
}

.social-btn.whatsapp-footer:hover::after,
.social-btn.whatsapp-btn:hover::after,
.floating-btn.whatsapp-btn:hover::after {
    opacity: 0.7;
}

@keyframes whatsapp-pulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 25px rgba(37, 211, 102, 0.4);
    }
}

/* Phone Button - Enhanced Orange-Pink Gradient */
.social-btn.phone-footer,
.social-btn.phone,
.floating-btn.call-btn {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #ff9eb5 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.social-btn.phone-footer:hover,
.social-btn.phone:hover,
.floating-btn.call-btn:hover {
    background: linear-gradient(135deg, #e67c3c 0%, #e55a2b 50%, #e68ba5 100%);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

/* Facebook Button - Enhanced with Blue Glow */
.social-btn.facebook-footer,
.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 50%, #0d5dbf 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
    position: relative;
}

/* Facebook Highlight Effect */
.social-btn.facebook-footer::before,
.social-btn.facebook::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
    z-index: 1;
}

/* Facebook Glow Effect */
.social-btn.facebook-footer::after,
.social-btn.facebook::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #1877f2, #166fe5);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.social-btn.facebook-footer:hover,
.social-btn.facebook:hover {
    background: linear-gradient(135deg, #0f66d9 0%, #0d5dbf 50%, #0a4d99 100%);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5), 0 0 20px rgba(24, 119, 242, 0.3);
    animation: facebook-pulse 1.5s infinite;
}

.social-btn.facebook-footer:hover::after,
.social-btn.facebook:hover::after {
    opacity: 0.7;
}

@keyframes facebook-pulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5), 0 0 20px rgba(24, 119, 242, 0.3);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(24, 119, 242, 0.6), 0 0 25px rgba(24, 119, 242, 0.4);
    }
}

/* Instagram Button - Enhanced with Rainbow Glow */
.social-btn.instagram-footer,
.social-btn.instagram {
    background: linear-gradient(135deg, 
        #f09433 0%, 
        #e6683c 25%, 
        #dc2743 50%, 
        #cc2366 75%, 
        #bc1888 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
    position: relative;
}

/* Instagram Highlight Effect */
.social-btn.instagram-footer::before,
.social-btn.instagram::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
    z-index: 1;
}

/* Instagram Glow Effect */
.social-btn.instagram-footer::after,
.social-btn.instagram::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.social-btn.instagram-footer:hover,
.social-btn.instagram:hover {
    background: linear-gradient(135deg, 
        #d9842e 0%, 
        #cf5c36 25%, 
        #c5233c 50%, 
        #b81f5b 75%, 
        #a91579 100%);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5), 0 0 20px rgba(225, 48, 108, 0.3);
    animation: instagram-pulse 1.5s infinite;
}

.social-btn.instagram-footer:hover::after,
.social-btn.instagram:hover::after {
    opacity: 0.7;
}

@keyframes instagram-pulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5), 0 0 20px rgba(225, 48, 108, 0.3);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(225, 48, 108, 0.6), 0 0 25px rgba(225, 48, 108, 0.4);
    }
}

/* Enhanced Floating Buttons */
.floating-btn {
    width: 64px;
    height: 64px;
    border-radius: 16px; /* More modern rounded corners */
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(10px);
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    transform: scale(0);
    transition: transform 0.4s ease;
}

.floating-btn:hover::before {
    transform: scale(1);
}

.floating-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Pulse animation for floating buttons - More subtle */
.floating-btn {
    animation: floating-pulse 4s infinite ease-in-out;
}

@keyframes floating-pulse {
    0%, 100% { 
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        transform: translateY(-2px);
    }
}

/* Focus states for accessibility */
.social-btn:focus-visible,
.floating-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
    transform: translateY(-2px);
}

/* Active states */
.social-btn:active,
.floating-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Loading state with spinner */
.social-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.social-btn.loading i {
    animation: spin 1s linear infinite;
}

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

/* Success state */
.social-btn.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Error state */
.social-btn.error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    animation: error-shake 0.5s ease;
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        gap: 12px;
    }
    
    .social-btn {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .social-btn i {
        font-size: 18px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        font-size: 1.4rem;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    /* Mobile navigation */
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    /* Hero section mobile */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Contact form mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .social-btn i {
        font-size: 16px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        font-size: 1.3rem;
    }
    
    .floating-buttons {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }
    
    /* Very small screen adjustments */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .social-btn,
    .floating-btn {
        border: 2px solid white;
        box-shadow: none;
    }
    
    .social-btn:hover,
    .floating-btn:hover {
        border-color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .social-btn,
    .floating-btn {
        transition: none;
        animation: none;
    }
    
    .social-btn:hover,
    .floating-btn:hover {
        transform: none;
    }
    
    .social-btn::before,
    .floating-btn::before {
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .social-btn {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .social-btn:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
}

/* Print styles */
@media print {
    .social-btn,
    .floating-btn,
    .floating-buttons,
    .language-toggle {
        display: none;
    }
    
    .hero-section {
        height: auto;
        background: none;
        color: #000;
        padding: 2rem 0;
    }
    
    .section {
        padding: 1rem 0;
    }
}

/* SEO Enhancement: Breadcrumb Styles */
.breadcrumbs {
    background: var(--light-gray);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumbs ol li {
    display: flex;
    align-items: center;
}

.breadcrumbs ol li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #666;
}

.breadcrumbs a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-pink);
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner utility */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

/* Footer bottom section */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
    color: var(--primary-orange);
    font-weight: 600;
}