/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Mobile First */
.navbar {
    background: #123249;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    color: #d0997b;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    color: #d0997b;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d0997b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #123249;
    list-style: none;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu li {
    margin: 15px 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d0997b;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 50, 73, 0.7);
    z-index: -1;
}

.hero-content {
    padding: 20px;
    z-index: 1;
    margin-top: -70px;
}

.hero-content > svg {
    width: 100%;
    max-width: 754px;
    height: auto;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #d0997b;
    color: #123249;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(208, 153, 123, 0.4);
}

/* About Section */
.about {
    padding: 60px 20px;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #123249;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #123249;
}

.services-grid {
    display: grid;
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px;
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: #123249;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #123249;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.info-item h3 {
    color: #123249;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h3 svg {
    flex-shrink: 0;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: #123249;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

.info-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #123249;
    transition: width 0.3s ease;
}

.info-item a:hover {
    color: #123249;
}

.info-item a:hover::after {
    width: 100%;
}

.contact-map {
    width: 100%;
    position: relative;
}

.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.map-link:hover .map-image {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -100%);
    }
    50% {
        transform: translate(-50%, -120%);
    }
}

/* Footer */
.footer {
    background: #123249;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer .disclaimer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-logo {
        max-width: 754px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        transform: translateX(0);
        display: flex;
        width: auto;
        padding: 0;
        background: transparent;
    }
    
    .nav-menu li {
        margin: 0 0 0 30px;
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-image {
        width: 45%;
    }
    
    .about-text {
        width: 55%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        flex-direction: row;
    }
    
    .contact-info,
    .contact-map {
        flex: 1;
    }
    
    .map-image {
        height: 100%;
        min-height: 450px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-logo {
        max-width: 754px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .logo {
        font-size: 1.5rem;
    }
}
