* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    background-color: #fdfbf7;
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f2ede4;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(13, 92, 95, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    letter-spacing: 0.5px;
}

.brand-phoenix { color: #0d5c5f; }
.brand-management {
    color: #c5a059;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 1px solid #dfdcd3;
    margin-left: 10px;
    padding-left: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #5c6b73;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #0d5c5f;
}

.btn-tel {
    background: #0d5c5f;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background-color 0.2s, transform 0.2s !important;
    border: 1px solid #0a494b;
    font-size: 14px !important;
}

.btn-tel:hover {
    background-color: #0a494b;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7f3ec 0%, #ffffff 100%);
    padding: 80px 0;
    border-bottom: 1px solid #f2ede4;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #0d5c5f;
    margin-bottom: 25px;
}

.hero-text .highlight {
    color: #c5a059;
    font-style: italic;
    font-weight: 400;
}

.hero-text .subtitle {
    font-size: 17px;
    color: #5c6b73;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.feature-icon {
    font-size: 20px;
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(13, 92, 95, 0.05);
    border: 1px solid #f2ede4;
}

/* Form Card */
.hero-form-container {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: #ffffff;
    border: 1px solid #f2ede4;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(13, 92, 95, 0.05);
    width: 100%;
    max-width: 520px;
}

.form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #0d5c5f;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c5a059;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfdcd3;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #2c3e50;
    background-color: #faf9f6;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d5c5f;
    box-shadow: 0 0 0 3px rgba(13, 92, 95, 0.1);
    outline: none;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    background: #0d5c5f;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(13, 92, 95, 0.15);
    transition: background-color 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #0a494b;
    transform: translateY(-1px);
}

/* Success Banner */
.success-banner {
    background-color: #f0f7f7;
    border: 1px solid #c9e2e2;
    color: #205c5e;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
}

.success-banner h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    color: #0d5c5f;
    margin-bottom: 12px;
}

.success-banner p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5a5a;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f2ede4;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #0d5c5f;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 55px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    border: 1px solid #f2ede4;
    border-radius: 6px;
    padding: 35px;
    background-color: #faf9f6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(13, 92, 95, 0.05);
    border-color: #e2d9cc;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #0d5c5f;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #5c6b73;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: #f7f3ec;
    color: #7f8c8d;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #c5a059;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-form-container {
        justify-content: center;
    }
    
    .form-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }
    
    .btn-tel {
        width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Floating chat widget styles */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Arial, sans-serif;
}
.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: white !important;
    font-weight: bold;
    min-width: 44px;
    height: 44px;
    width: 44px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.chat-btn:hover {
    width: auto;
    padding-right: 20px;
    padding-left: 15px;
    min-width: 150px;
}
.chat-btn .chat-label {
    display: none;
    margin-left: 10px;
    font-size: 14px;
    white-space: nowrap;
}
.chat-btn:hover .chat-label {
    display: inline-block;
}
.chat-btn img, .chat-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.whatsapp-bg { background-color: #25D366; }
.messenger-bg { background-color: #0084FF; }
.phone-bg { background-color: #0d5c5f; }

