.cd-hero {
background: linear-gradient(135deg, #35bd69 0%, #20944e 100%);
padding: 64px 24px 56px;
text-align: center;
position: relative;
overflow: hidden;
border-radius: 0;
margin: -40px -24px 0 -24px;
}
.cd-hero-inner {
max-width: 640px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.cd-hero-badge {
display: inline-block;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.3);
border-radius: 20px;
padding: 5px 16px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.9);
margin-bottom: 18px;
}
.cd-hero h1 {
font-size: clamp(1.8rem, 5vw, 2.8rem);
font-weight: 700;
color: #fff;
line-height: 1.15;
margin-bottom: 14px;
letter-spacing: -0.02em;
}
.cd-hero p {
font-size: 1rem;
color: rgba(255,255,255,0.85);
line-height: 1.65;
max-width: 520px;
margin: 0 auto;
}
.cd-contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-bottom: 48px;
margin-top: 48px;
}
.cd-card {
background: #ffffff;
border: 1px solid #e8e8e8;
border-radius: 16px;
padding: 32px;
box-shadow: 0 2px 16px rgba(0,0,0,0.06);
transition: transform 0.2s, box-shadow 0.2s;
}
.cd-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.cd-card-icon {
width: 48px;
height: 48px;
background: #eafaf1;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
color: #20944e;
margin-bottom: 16px;
font-weight: 700;
}
.cd-card h3 {
font-size: 1.1rem;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 8px;
}
.cd-card p {
font-size: 0.9rem;
color: #555;
line-height: 1.6;
margin-bottom: 12px;
}
.cd-card a {
color: #20944e;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
gap: 6px;
transition: gap 0.2s;
}
.cd-card a:hover {
gap: 10px;
}
.cd-form-card {
background: #ffffff;
border: 1px solid #e8e8e8;
border-radius: 16px;
padding: 40px;
box-shadow: 0 2px 16px rgba(0,0,0,0.06);
margin-bottom: 48px;
}
.cd-form-card h2 {
font-size: 1.3rem;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 8px;
}
.cd-form-card > p {
font-size: 0.95rem;
color: #555;
margin-bottom: 28px;
}
.cd-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 16px;
}
.cd-form-group {
margin-bottom: 16px;
}
.cd-form-group label {
display: block;
font-size: 0.85rem;
font-weight: 600;
color: #1a1a2e;
margin-bottom: 6px;
}
.cd-form-group input,
.cd-form-group textarea,
.cd-form-group select {
width: 100%;
padding: 12px 14px;
border: 1px solid #e8e8e8;
border-radius: 10px;
background: #fafafa;
font-family: 'Inter', sans-serif;
font-size: 0.95rem;
color: #1a1a2e;
transition: border-color 0.2s, box-shadow 0.2s;
}
.cd-form-group input:focus,
.cd-form-group textarea:focus,
.cd-form-group select:focus {
outline: none;
border-color: #35bd69;
box-shadow: 0 0 0 3px rgba(53,189,105,0.1);
}
.cd-form-group textarea {
min-height: 120px;
resize: vertical;
}
.cd-btn-submit {
display: inline-flex;
align-items: center;
gap: 8px;
background: #35bd69;
color: #fff;
font-family: 'Inter', sans-serif;
font-size: 0.95rem;
font-weight: 600;
border: none;
border-radius: 10px;
padding: 14px 28px;
cursor: pointer;
transition: background 0.2s, transform 0.2s;
}
.cd-btn-submit:hover {
background: #20944e;
transform: translateY(-1px);
}
.cd-info-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
.cd-info-block {
background: #ffffff;
border: 1px solid #e8e8e8;
border-radius: 16px;
padding: 32px;
box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.cd-info-block h3 {
font-size: 1.1rem;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.cd-info-block h3::before {
content: '';
width: 4px;
height: 20px;
background: #35bd69;
border-radius: 2px;
}
.cd-info-block p {
font-size: 0.9rem;
color: #555;
line-height: 1.7;
margin-bottom: 10px;
}
.cd-info-block ul {
list-style: none;
padding: 0;
}
.cd-info-block li {
font-size: 0.9rem;
color: #555;
padding: 8px 0;
padding-left: 24px;
position: relative;
border-bottom: 1px solid #e8e8e8;
}
.cd-info-block li:last-child {
border-bottom: none;
}
.cd-info-block li::before {
content: '';
position: absolute;
left: 0;
top: 16px;
width: 8px;
height: 8px;
border-radius: 50%;
background: #35bd69;
}
@media (max-width: 768px) {
.cd-contact-grid,
.cd-info-section,
.cd-form-row {
grid-template-columns: 1fr;
}
.cd-hero {
padding: 48px 20px 40px;
margin: -20px -16px 0 -16px;
}
.cd-card,
.cd-form-card,
.cd-info-block {
padding: 24px 20px;
}
}
Service client
Nous contacter
Notre equipe ChienDog est a votre disposition pour repondre a toutes vos questions. Choisissez le moyen de contact qui vous convient le mieux.
A propos de ChienDog
ChienDog est une boutique en ligne dediee au bien-etre de votre compagnon a quatre pattes. Nous selectionnons avec soin des produits de qualite pour la sante, le confort et le bonheur de votre chien.
Notre mission est de vous offrir une experience d'achat simple, securisee et satisfaisante, avec un service client a l'ecoute.
Heures d'ouverture
- Lundi - Vendredi : 9h00 - 18h00
- Samedi : 10h00 - 16h00
- Dimanche : Ferme
- Reponse email : 24-48h ouvrables