/* ============================================
   COMMON STYLES - USED ON ALL PAGES
   Colors preserved exactly from original
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: #f9f7f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    font-size: 16px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn:hover {
    background: white;
    color: #8b4513;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #8b4513;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 20px;
    line-height: 1.9;
    text-align: center;
    color: #444;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="desert" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23f4a460;stop-opacity:1" /><stop offset="100%" style="stop-color:%23d4a373;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23desert)" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.page-hero p {
    font-size: 20px;
    font-style: italic;
    color: #f4e4c1;
}

/* Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-left: 4px solid #d4a373;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateX(5px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b4513;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Quote Box */
.quote-box {
    background: white;
    border-left: 5px solid #d4a373;
    padding: 30px 40px;
    margin: 50px 0;
    font-style: italic;
    font-size: 20px;
    color: #555;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Warning Box - Different from experience.php warning */
.warning-box {
    background: #fff3cd;
    border-left: 5px solid #ff9800;
    padding: 30px;
    margin: 40px 0;
}

.warning-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e65100;
}

.warning-box p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white !important;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
    border-radius: 2px;
}

.highlight-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 300;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Floating Google Review Button */
.review-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #FBBC04;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.review-float:hover {
    background-color: #F9AB00;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(251, 188, 4, 0.4);
}

.review-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .review-float {
        width: 55px;
        height: 55px;
        bottom: 85px;
        right: 20px;
    }
    
    .review-float svg {
        width: 28px;
        height: 28px;
    }
}