* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo-icon img {
    width: 180px;
    height: auto;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #2ecc71;
}

.nav-link.active {
    color: #2ecc71;
    border-bottom: 2px solid #2ecc71;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    max-height: 400px;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    overflow-y: auto;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: visible;
}

.dropdown-item:hover {
    background: #f8f9fa;
    border-left-color: #2ecc71;
    color: #2ecc71;
}

@media (max-width: 768px) {
    .logo-icon img {
        width: 140px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    .nav-menu.show {
        max-height: 80vh;
        /* Scrollable max height */
        overflow-y: auto;
    }

    .nav-item {
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: #f9f9f9;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .logo-icon img {
        width: 140px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 0.5rem 1rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        border-radius: 0;
        background: #f9f9f9;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
        border-left: none;
    }

    .nav-link.active {
        border-bottom: none;
        color: #2ecc71;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(46, 204, 113, 0.9)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

img.address-image {
    width: 100%;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.cta-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-phone {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-phone {
        font-size: 1.5rem;
    }
}

.footer {
    background-color: #f8f9fa;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.contact {
    margin-bottom: 20px;
}

.contact-phone {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-text {
    font-size: 1em;
    color: #ffff;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #007BFF;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #458dd9;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 15px;
    font-size: 0.9em;
    color: #838383;
}

@media (max-width: 600px) {
    .contact-phone {
        font-size: 1.2em;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

.footer-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.logo-section {
    margin-bottom: 20px;
}

.logo-section img {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.company-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.request-btn {
    background-color: #4dc0b5;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.request-btn:hover {
    background-color: #3da89e;
    transform: translateY(-2px);
}

.footer-middle {
    display: flex;
    flex-direction: row;
}

.nav-section h3 {
    color: #4dc0b5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4dc0b5;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.map-section h3 {
    color: #4dc0b5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.map-description {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0d5a8, #e8c48a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, #c49b6a 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.map-content {
    text-align: center;
    color: #8b6f47;
    font-size: 12px;
    z-index: 1;
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-preview {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background: #4267B2;
    border-radius: 3px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 30px 20px;
    }

    .anniversary-badge {
        font-size: 20px;
        padding: 12px 18px;
    }
}

.services-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.service-category {
    display: flex;
    flex-direction: column;
}

.service-category h4 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.service-category h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #4dc0b5;
}

.service-list {
    list-style: none;
}

.service-list li a {
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.service-list li:hover {
    color: #4dc0b5;
}

.service-list li.highlight {
    color: #d2691e;
    font-weight: 500;
}

.social-preview {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background: #4267B2;
    border-radius: 3px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 30px 20px;
    }

    .anniversary-badge {
        font-size: 20px;
        padding: 12px 18px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.discover-link {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discover-link:hover {
    text-decoration: underline;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.service-title-overlay {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.discover-button {
    background: white;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discover-button:hover {
    background: #16a085;
    color: white;
    transform: translateY(-2px);
}

.card-content {
    padding: 25px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.service-highlight {
    color: #16a085;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        padding: 20px 15px;
    }

    .header-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-title-overlay {
        font-size: 1.5rem;
    }

    .card-image-container {
        height: 220px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.news-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.read-more-link {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.read-more-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: #17a2b8;
}

.read-more-link:hover {
    color: #138496;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-date {
    color: #17a2b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

/* Special styling for the third card (guides) */
.news-card.featured {
    background: linear-gradient(135deg, #ff9a56, #ffd93d);
    color: white;
}

.news-card.featured .news-date,
.news-card.featured .news-card-title {
    color: white;
}

.news-card.featured .news-excerpt {
    color: rgba(255, 255, 255, 0.9);
}

.featured-icon {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9a56, #ffd93d);
    position: relative;
    overflow: hidden;
}

.guides-text {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-section {
        padding: 40px 15px;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .news-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .news-title {
        font-size: 1.8rem;
    }

    .news-card-title {
        font-size: 1.2rem;
    }

    .news-image,
    .featured-icon {
        height: 200px;
    }

    .guides-text {
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}