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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.logo-text h1 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    color: white;
    order: 1;
}

.logo-text .profession {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    order: -1;
    animation: vibrate 1.5s infinite;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #0084d9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0084d9 0%, #005aa0 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    animation: bounce 2s infinite;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.service-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #0084d9;
}

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

.service-card h3 {
    color: #0084d9;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #555;
    line-height: 1.8;
}

/* Assurance Section */
.assurance {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: white;
}

.assurance-banner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.assurance h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.assurance p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.assurance-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.assurance-benefits li {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid white;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.assurance-benefits li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.pricing-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
}

.pricing-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #0084d9;
    margin-bottom: 10px;
}

.price span {
    font-size: 24px;
    color: #666;
}

.price-detail {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    line-height: 1.6;
}

.pricing-note {
    background: linear-gradient(135deg, #0084d9 0%, #005aa0 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 60px 20px;
    background-color: white;
}

.gallery h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    color: #0084d9;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about .container {
    max-width: 800px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.about p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
}

.features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.features li {
    font-size: 18px;
    padding: 15px;
    background: white;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #0084d9;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-details h3 {
    margin-bottom: 20px;
    color: #0084d9;
    font-size: 22px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-details a {
    color: #0084d9;
    text-decoration: none;
    font-weight: bold;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.95);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 132, 217, 0.5);
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid #0084d9;
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
}

/* Keyframes */
@keyframes vibrate {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    50% {
        transform: translateX(2px);
    }
    75% {
        transform: translateX(-2px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .services-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 28px;
    }
}