/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.41), rgba(254, 119, 0, 0.54));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Tags Section */
.tags-section {
    padding: 80px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

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

.about-text h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--text-color);
    letter-spacing: -1px;
}

.about-text h2 span {
    color: var(--primary-color);
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-image {
    height: 450px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23f5f5f5" width="800" height="600"/><text x="400" y="300" font-size="24" fill="%23ccc" text-anchor="middle">White Flowers</text></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Emergency Contact */
.emergency-section {
    background: var(--bg-light);
    padding: 70px 40px;
    text-align: center;
}

.emergency-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.emergency-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.emergency-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.emergency-numbers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-number {
    background: #fff;
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s;
}

.emergency-number:hover {
    transform: translateY(-5px);
}

.emergency-number .label {
    font-size: 13px;
    color: var(--text-lighter);
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.emergency-number .number {
    font-size: 38px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Business Section */
.business {
    padding: 100px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.business-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.business-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.business-card:hover .business-card-bg {
    transform: scale(1.05);
}

.business-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
}

.business-card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    z-index: 2;
    letter-spacing: -0.5px;
}

/* Notice Section */
.notice {
    background: var(--bg-light);
    padding: 100px 40px;
}

.notice-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.notice-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.notice-header {
    background: var(--text-color);
    color: #fff;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.notice-list {
    padding: 25px 30px;
}

.notice-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: background 0.3s;
}

.notice-item:hover {
    background: var(--bg-light);
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-title {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 400;
}

.notice-date {
    color: var(--text-lighter);
    font-size: 13px;
    font-weight: 300;
}

/* Quick Menu */
.quick-menu {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.quick-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(244, 115, 32, 0.3);
    transition: all 0.3s;
    font-size: 20px;
}

.quick-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(244, 115, 32, 0.4);
}