/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d8d7a 0%, #1a6b5c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d8d7a, #4ecdc4, #2d8d7a);
}

.content-header {
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, #f8fdfc 0%, #e8f6f3 100%);
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d8d7a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.content-body {
    padding: 40px;
}

.content-section {
    margin-bottom: 50px;
}

.intro-section {
    background: linear-gradient(135deg, #f8fdfc 0%, #e8f6f3 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid #2d8d7a;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d8d7a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2d8d7a, #4ecdc4);
    border-radius: 2px;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2d8d7a;
    border-radius: 50%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4ecdc4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-item strong {
    color: #2d8d7a;
    font-size: 1.1rem;
}

.hotel-types {
    background: linear-gradient(135deg, #f0f8f6 0%, #e8f6f3 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.hotel-types ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.hotel-types li {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.hotel-types li:hover {
    transform: translateX(5px);
}

.hotel-types li::before {
    content: '🏨';
    font-size: 1.2rem;
}

.features-section {
    background: linear-gradient(135deg, #2d8d7a 0%, #1a6b5c 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.features-section h4 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.feature-item p {
    line-height: 1.6;
    opacity: 0.9;
}

.cta-section {
    background: linear-gradient(135deg, #4ecdc4 0%, #2d8d7a 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(45, 141, 122, 0.3);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2d8d7a;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    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 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .content-body {
        padding: 25px;
    }

    .content-header {
        padding: 30px 25px 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hotel-types ul {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2d8d7a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a6b5c;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.appointment-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.appointment-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.quote-btn {
    background: #2d8d7a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    width: 100%;
}

.quote-btn:hover {
    background: #236b5e;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    transition: border-color 0.3s;
}

.contact-item:hover {
    border-color: #2d8d7a;
}

.contact-item a {
    text-decoration: none;
    color: #2d8d7a;
    font-weight: 500;
    flex: 1;
}

.hours-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d8d7a;
    margin-bottom: 15px;
}

.hours-info {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2d8d7a;
}

.time {
    color: #666;
    font-size: 0.9rem;
}

.service-note {
    background: #f0f8f6;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    color: #2d8d7a;
}

.services-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .search-box input {
        width: 200px;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .main-content {
        padding: 25px;
    }

    .main-title {
        font-size: 2rem;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-image {
        height: 250px;
    }

    .appointment-card {
        padding: 20px;
    }

    .hours-card {
        padding: 20px;
    }

    .services-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .search-box {
        display: none;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 15px 10px;
    }

    .main-content {
        padding: 20px;
    }

    .phone-btn {
        bottom: 15px;
        left: 15px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}