/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;

}

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

}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
	
}

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

.logo-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #2c3e50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.wifi-dots {
    position: absolute;
    top: 8px;
    right: 6px;
}

.dot {
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    position: absolute;
}

.dot:nth-child(1) { top: 0; right: 0; }
.dot:nth-child(2) { top: 2px; right: 2px; }
.dot:nth-child(3) { top: 4px; right: 4px; }

.logo-text h1 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
	
	color: white;
    padding: 100px 0 50px;
    text-align: center;
	background: url("../images/container_hero.jpg");
	background-size: 100% 100%;
    background-repeat: no-repeat;
	border-radius: 40px;
	margin-top:100px;
	margin-left : 10px;
	margin-right:10px;
	margin-bottom : 10px;
	
}

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

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
	color: violet;
	font-weight:bold;
}

.cta-button {
    display: inline-block;
   /* background: linear-gradient(135deg,blue 0% red 100%);*/
   background: linear-gradient(orange,black, blue, black);
	/*background: linear-gradient(135deg, #ff0000 0%, #0000ff 100%);*/
    /*color: #2c3e50;*/
	color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
	
    padding: 100px 0;
    /*background: white;*/
	background: url("../images/container_services.jpg");
	background-size: 100% 100%;*/
    background-repeat: no-repeat;
	border-radius: 40px;
	margin-left : 10px;
	margin-right:10px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
   /* color: #2c3e50;*/
    color: #FFFFFF;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    /*color: #7f8c8d;*/
	color : violet;
    margin-bottom: 60px;
	margin-top: 10px;
	font-weight:bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0px;
    margin-bottom: 60px;
	opacity:0.7;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-description {
    /*color: #7f8c8d;*/
	color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.service-details h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.service-details ul {
    text-align: left;
    color: #555;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 5px;
    font-size: 0.95em;
}

/* Equipment Gallery */
.equipment-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.equipment-item {
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 120px;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-item img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 4px;
}

.equipment-item span {
    font-size: 0.8em;
    color: #666;
    font-weight: 500;
}

/* Add Review Section */
.add-review-section {
    text-align: center;
    margin: 40px 0;
}

.add-review-btn {
    background: white;
    color: #2c3e50;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.add-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: #ecf0f1;
}

/* Review Modal */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-modal-content {
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.review-modal-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

/* Review Form */
.review-form {
    padding: 25px;
}

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

.review-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
    outline: none;
    border-color: #3498db;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.star.active {
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cancel-btn {
    background: #95a5a6;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cancel-btn:hover {
    background: #7f8c8d;
}

.submit-review-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Success Message */
.review-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 2001;
    animation: successSlideIn 0.5s ease;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.success-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.success-content p {
    color: #7f8c8d;
    margin: 0;
}

/* New Review Card Animation */
.review-card.new-review {
    animation: newReviewSlideIn 0.8s ease;
    border: 2px solid rgba(255,255,255,0.4);
}

@keyframes newReviewSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ajoutez ces styles à votre fichier style.css existant */

/* Conteneur principal des avis */
.reviews-container {
    margin-top: 40px;
}

/* Styles pour les cartes d'avis compactes */
.review-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    min-height: auto;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* En-tête de l'avis */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-stars {
    font-size: 16px;
    font-weight: bold;
    color: #ffd700;
}

.review-date {
    color: rgba(255,0,0,0.7);
    font-size: 11px;
    font-style: italic;
    white-space: nowrap;
}

/* Contenu de l'avis */
.review-content {
    margin-bottom: 15px;
}

.review-text {
    color: blue;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    font-size: 14px;
}

/* Bouton "Lire plus/moins" */
.read-more-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    padding: 0;
    margin-top: 5px;
    font-style: normal;
}

.read-more-btn:hover {
    color: #2980b9;
}

/* Auteur de l'avis */
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.review-info h4 {
    margin: 0 0 3px 0;
    color: black;
    font-size: 14px;
    font-weight: 600;
}

.review-info p {
    margin: 0;
    color: black;
    font-size: 12px;
}

/* Service utilisé */
.review-service {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: black;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    margin-top: 3px;
}

/* Actions utilisateur (modifier/supprimer) */
.review-actions {
    position: absolute;
    top: 15px;
    right: 85px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.review-card:hover .review-actions {
    opacity: 1;
}

.edit-btn, .delete-btn {
    background: gray;
    border: 1px solid rgba(255,255,255,0.3);
    color: black;
    padding: 4px 8px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: #3498db;
    border-color: #3498db;
}

.delete-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

/* Grille responsive pour les avis */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Message quand aucun avis */
.no-reviews-message {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 2px dashed rgba(255,255,255,0.3);
}

/* Responsive pour les avis */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-date {
        align-self: flex-end;
        margin-top: -20px;
    }
    
    .review-actions {
        position: static;
        opacity: 1;
        margin-top: 10px;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 12px;
    }
    
    .review-author {
        gap: 10px;
    }
    
    .review-avatar {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

.reviews {
	border-radius: 25px;
    padding: 10px 0;
	background: url("../images/container_hero.jpg");
	background-size: 100% 100%;
    background-repeat: no-repeat;
    color: blue;
	border-radius: 40px;
	margin-left : 10px;
	margin-right:10px;
	
}

.reviews .section-title {
    color: white;
}

.reviews .section-subtitle {
    color: rgba(255,255,255,0.9);
}

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



/* Styles pour l'affichage horizontal des avis */
/*.reviews-horizontal-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    transition: transform 0.3s ease;
    padding: 20px 0;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e3e8ef;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-stars {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    gap: 2px;
}

.review-date {
    color: #7f8c8d;
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
}

.review-text {
    color: #2c3e50;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.review-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
}

.review-info p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

.review-service {
    display: inline-block;
    background: #e8f4f8;
    color: #2980b9;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
}
*/
/* Navigation des avis */
/*.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 15px 0;
}

.nav-btn {
    background: white;
    border: 2px solid #3498db;
    color: #3498db;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.nav-btn:hover:not(:disabled) {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-arrow {
    line-height: 1;
}

.reviews-pagination {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

*/
/* Animation pour les nouveaux avis */
/*.review-card {
    transition: all 0.5s ease;
}*/

/* Responsive Design */
/*@media (max-width: 1024px) {
    .reviews-track {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}


@media (max-width: 480px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-date {
        align-self: flex-end;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .reviews-pagination {
        min-width: 100px;
        font-size: 12px;
    }
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.no-reviews-message {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.review-card.admin-mode .admin-actions {
    display: flex;
}
/*.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.review-info h4 {
    margin-bottom: 5px;
    font-weight: bold;
}

.review-info p {
    font-size: 0.9em;
    opacity: 0.8;
}*/

/* Styles pour l'interface admin */
.admin-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 3000;
    display: none;
}

.admin-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    z-index: 3000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.admin-actions {
    display: none;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}



.admin-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: rgba(255,255,255,0.2);
}

.admin-btn.delete {
    border-color: #e74c3c;
    color: #e74c3c;
}

.admin-btn.delete:hover {
    background: #e74c3c;
    color: white;
}

.admin-btn.edit {
    border-color: #f39c12;
    color: #f39c12;
}

.admin-btn.edit:hover {
    background: #f39c12;
    color: white;
}



.admin-info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
}

.expertise-list {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.expertise-item:hover {
    background: #f8f9fa;
}

.expertise-item::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.contact-item-icon {
    font-size: 1.5em;
    margin-right: 15px;
    width: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: #3498db;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
	
	/************************/
	
	    .reviews-track {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviews-navigation {
        gap: 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
	
	
	/*************************/
	
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-header {
        gap: 8px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }

    .equipment-gallery {
        gap: 10px;
    }

    .equipment-item {
        max-width: 100px;
    }

    .equipment-item img {
        width: 60px;
        height: 45px;
    }

    .admin-panel {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 10px;
    }

    .admin-toggle {
        bottom: 10px;
        right: 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card {
    animation: fadeInUp 0.6s ease forwards;
	 
}

/*.service-card:nth-child(1) { animation-delay: 0.1s; background: linear-gradient(180deg, #ffffff 0%, blue 100%);}
.service-card:nth-child(2) { animation-delay: 0.2s; background: linear-gradient(360deg, #ffffff 0%, yellow 100%);}
.service-card:nth-child(3) { animation-delay: 0.3s; background: linear-gradient(180deg, #ffffff 0%, red 100%);}
.service-card:nth-child(4) { animation-delay: 0.4s; background: linear-gradient(360deg, #ffffff 0%, green 100%);}
*/

.service-card:nth-child(1) { animation-delay: 0.1s;}
.service-card:nth-child(2) { animation-delay: 0.2s;}
.service-card:nth-child(3) { animation-delay: 0.3s;}
.service-card:nth-child(4) { animation-delay: 0.4s;}

.review-card {
    animation: fadeInUp 0.8s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.2s; }
.review-card:nth-child(2) { animation-delay: 0.4s; }
.review-card:nth-child(3) { animation-delay: 0.6s; }