/* Variables */
:root {
    --primary-color: #332275;
    --secondary-color: #da251c;
    --white-color: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
}

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

/* Header */
.header {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-car {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    opacity: 0.3;
}

.hero-elips {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

/* Hero Gallery Styles */
.hero-gallery {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 500px;
}

.hero-image-item {
    text-align: center;
}

.hero-round-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0.6rem;
}

.hero-round-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.hero-image-item h4 {
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #b8201a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2a1d66;
    transform: translateY(-2px);
}

/* Quick Services */
.quick-services {
    padding: 4rem 0;
    background: var(--white-color);
}

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

.service-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.service-icon.red {
    background: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.service-card h3 a {
    text-decoration: none;
    color: inherit;
}

.service-card h3 a:hover {
    color: var(--primary-color);
}

.service-card h5 {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.service-card h5 a {
    text-decoration: none;
    color: inherit;
}

.service-card h5 a:hover {
    color: var(--primary-color);
}

/* Professional Services */
.professional-services {
    padding: 4rem 0;
    background: var(--gray-100);
}

.professional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

.service-detail {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-detail .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-detail h3 a {
    text-decoration: none;
    color: var(--primary-color);
}

.service-detail h3 a:hover {
    color: var(--secondary-color);
}

.service-detail p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background: var(--white-color);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.popular {
    border: 2px solid var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.price-header {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 2rem;
    text-align: center;
}

.price-card.popular .price-header {
    background: var(--secondary-color);
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-content {
    padding: 2rem;
}

.price-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.price-content li:last-child {
    border-bottom: none;
}

.price-content .btn-primary,
.price-content .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Team */
.team {
    padding: 4rem 0;
    background: var(--gray-100);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.team-member {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--white-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.testimonial {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.customer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial .stars i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.testimonial p {
    font-style: italic;
    color: var(--gray-700);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Google Rating */
.google-rating {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.overall-rating .stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white-color);
    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 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Packages Page */
.packages {
    padding: 4rem 0;
    background: var(--gray-100);
}

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

.package-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 2rem;
    text-align: center;
}

.package-header.basic {
    background: var(--gray-600);
}

.package-header.premium {
    background: #059669;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-content li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.package-content li:last-child {
    border-bottom: none;
}

.package-content li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Services Detail Page */
.services-detail {
    padding: 4rem 0;
    background: var(--white-color);
}

.service-item {
    display: block;
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item .service-icon {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    color: var(--gray-600);
}

.service-content ul li {
    margin-bottom: 0.25rem;
}

/* Process */
.process {
    padding: 4rem 0;
    background: var(--gray-100);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.step {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step:nth-child(even) .step-number {
    background: var(--secondary-color);
}

/* Contact Page */
.contact {
    padding: 4rem 0;
    background: var(--white-color);
}

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

.contact-form {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon:nth-child(odd) {
    background: var(--secondary-color);
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.contact-details p {
    color: var(--gray-600);
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.contact-social h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.quick-contact {
    padding: 4rem 0;
    background: var(--gray-100);
    text-align: center;
}

.quick-contact h2 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.quick-contact p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Detail Page */
.team-detail {
    padding: 4rem 0;
    background: var(--white-color);
}

.team-detail .team-member {
    display: flex;
    gap: 2rem;
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    align-items: center;
}

.team-detail .team-photo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-experience {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.team-specialties span {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Stats */
.stats {
    padding: 4rem 0;
    background: var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Qualifications */
.qualifications {
    padding: 4rem 0;
    background: var(--white-color);
}

.qualifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.qualification-item {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.qualification-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.qualification-icon:nth-child(odd) {
    background: var(--secondary-color);
}

.qualification-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.qualification-item ul {
    list-style: none;
    text-align: left;
}

.qualification-item ul li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.qualification-item ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* CTA */
.cta {
    padding: 4rem 0;
    background: var(--gray-100);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.cta p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Test Center */
.test-center {
    padding: 4rem 0;
    background: var(--white-color);
}

.center-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.center-content p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--gray-600);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.feature-icon:nth-child(odd) {
    background: var(--secondary-color);
}

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

/* Equipment */
.equipment {
    padding: 4rem 0;
    background: var(--gray-100);
}

.equipment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.equipment-item {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.equipment-icon:nth-child(odd) {
    background: var(--secondary-color);
}

.equipment-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: var(--white-color);
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.contact-info-item {
    background: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info-item .contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.contact-info-item .contact-icon:nth-child(odd) {
    background: var(--secondary-color);
}

.contact-info-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 4rem 0;
    background: var(--white-color);
}

.service-detail-section:nth-child(even) {
    background: var(--gray-100);
}

.service-detail-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.service-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white-color);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(51, 34, 117, 0.1);
}

.item-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-item:nth-child(even) .item-icon {
    background: var(--secondary-color);
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white-color);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white-color);
}

.why-choose .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.why-choose .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.why-choose .feature-item h3 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.why-choose .feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-items-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .why-choose .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--gray-100);
}

.gallery h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery > .container > p {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: var(--white-color);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-square-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white-color);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.4;
}

/* Mobile responsive for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery h2 {
        font-size: 2rem;
    }
    
    .gallery > .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Google Logo for Reviews */
.google-logo {
    background: var(--white-color) !important;
    border: 2px solid var(--gray-200) !important;
    color: #4285f4 !important;
}

/* Instagram Section */
.instagram-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white-color);
}

.instagram-section h2 {
    text-align: center;
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.instagram-section > .container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.instagram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.instagram-info {
    text-align: center;
}

.instagram-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.instagram-info h3 {
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.instagram-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.instagram-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white-color);
    color: var(--white-color);
    backdrop-filter: blur(10px);
}

.instagram-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.instagram-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.instagram-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.instagram-feature i {
    font-size: 2rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.instagram-feature h4 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.instagram-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Mobile responsive for Instagram */
@media (max-width: 768px) {
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-section h2 {
        font-size: 2rem;
    }
    
    .instagram-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .instagram-info h3 {
        font-size: 1.6rem;
    }
}

/* Navigation Active State */
.nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-car,
    .hero-elips {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        flex-direction: column;
    }
    
    .hero-image {
        flex: none;
    }
    
    .hero-round-image {
        width: 200px;
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-detail .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .map-section iframe {
        height: 300px;
    }
}

/* Map Section */
.map-section iframe {
    max-width: 100%;
}