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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background: url('assets/bg-image.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 238, 233, 0.85) 0%, rgba(255, 207, 197, 0.85) 50%, rgba(255, 168, 154, 0.85) 100%);
    z-index: -1;
}

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

/* Navbar Styles with Glass Effect */
.navbar {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(227, 83, 54, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(227, 83, 54, 0.1);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.navbar-title {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.title-main {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e35336 0%, #ff6b4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.title-suffix {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    opacity: 0.7;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.navbar-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navbar-link:hover {
    background: rgba(227, 83, 54, 0.1);
    color: #e35336;
}

/* Announcement Section with Glass */
.announcement-section {
    padding: 3rem 0;
    position: relative;
}

.announcement-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e35336;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(227, 83, 54, 0.1);
}

.announcement-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.announcement-container {
    overflow: hidden;
    border-radius: 40px 15px 40px 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 1.5rem 3rem 3rem 3rem;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 20px 40px rgba(227, 83, 54, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.announcement-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(227, 83, 54, 0.03) 0%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.announcement-slide {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.announcement-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.announcement-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e35336 0%, #ff6b4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.announcement-content p,
.announcement-description {
    font-size: 1.125rem;
    color: #424245;
    font-weight: 400;
    line-height: 1.6;
}

.announcement-description p {
    margin: 0.5rem 0;
}

.announcement-description a {
    color: #e35336;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.announcement-description a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.announcement-description strong {
    font-weight: 600;
    color: #1d1d1f;
}

.announcement-description ul,
.announcement-description ol {
    text-align: left;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.announcement-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.announcement-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 83, 54, 0.2);
    color: #e35336;
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    pointer-events: all;
}

.announcement-btn:hover {
    background: rgba(227, 83, 54, 0.9);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(227, 83, 54, 0.3);
}

.announcement-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(227, 83, 54, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #e35336;
    width: 24px;
    border-radius: 4px;
}

/* Services Section */
.services-section {
    padding: 4rem 0 6rem 0;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    color: white;
    position: relative;
    padding: 0.75rem 1.75rem;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e35336 0%, #ff6b4a 100%);
    border-radius: 35px 15px 35px 15px;
    z-index: -1;
    box-shadow:
        0 3px 15px rgba(227, 83, 54, 0.25),
        0 6px 25px rgba(227, 83, 54, 0.12);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: rgba(227, 83, 54, 0.15);
    border-radius: 50% 20% 50% 20%;
    z-index: -2;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 60px 20px 60px 20px;
    padding: 2.5rem 2rem;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 20px rgba(227, 83, 54, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 83, 54, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-radius: 20px 60px 20px 60px;
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(227, 83, 54, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.85);
}

.service-card:hover::before {
    transform: rotate(225deg);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e35336 0%, #ff6b4a 100%);
    border-radius: 50% 15% 50% 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(227, 83, 54, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15% 50% 15% 50%;
    background: linear-gradient(135deg, rgba(227, 83, 54, 0.2) 0%, transparent 100%);
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    border-radius: 15% 50% 15% 50%;
    box-shadow: 0 12px 32px rgba(227, 83, 54, 0.4);
}

.service-card:hover .service-icon::after {
    transform: scale(1.2);
    opacity: 0.5;
}

.service-title {
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-description {
    color: #424245;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
    font-size: 0.8rem;
}

.service-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: #555 !important;
    transform: translateX(4px);
    filter: brightness(0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Glass effect for scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
    background: rgba(227, 83, 54, 0.5);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 83, 54, 0.7);
}

/* Footer */
.footer {
    margin-top: 2rem;
    padding: 1.5rem 0;
    background: #140400;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-link:hover {
    background: rgba(227, 83, 54, 0.2);
    color: #ff6b4a;
}

.footer-copyright {
    margin-left: auto;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        margin-left: 0;
    }

    .navbar-menu {
        display: none;
    }

    .announcement-content h3 {
        font-size: 1.5rem;
    }

    .announcement-content p {
        font-size: 1rem;
    }

    .announcement-container {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-title {
        font-size: 1.15rem;
        padding: 0.6rem 1.25rem;
    }

    .section-title::before {
        border-radius: 25px 12px 25px 12px;
    }

    .section-title::after {
        width: 26px;
        height: 26px;
        bottom: -6px;
    }

    .service-card {
        padding: 1.75rem;
    }
}