/* ============================================
   Mijn Safestore Amsterdam Zuid - Main Stylesheet
   ============================================ */

:root {
    --primary-gold: #c9a962;
    --dark-gold: #a88a4a;
    --light-gold: #e8d5a3;
    --navy: #1a1f2e;
    --dark-navy: #0f1218;
    --light-navy: #2a3142;
    --cream: #f5f0e8;
    --light-cream: #faf8f4;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold) !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--white);
    font-weight: 300;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 1.2rem 1.5rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link.active {
    color: var(--primary-gold) !important;
}

.nav-link.active::after {
    width: 70%;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 50%, var(--light-navy) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-gold-vault.jpg') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid var(--primary-gold);
}

.est-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--navy);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 100%);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-navy:hover {
    background: var(--light-navy);
    color: var(--primary-gold);
}

/* ============================================
   Section Styles
   ============================================ */

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* ============================================
   Services Cards
   ============================================ */

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.5rem;
}

/* ============================================
   Feature Section
   ============================================ */

.feature-section {
    background: var(--white);
}

.feature-box {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--light-cream);
    border-radius: 15px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-light);
}

/* ============================================
   Gold Storage Section
   ============================================ */

.gold-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
}

.gold-section .section-title {
    color: var(--white);
}

.gold-section .section-title::after {
    background: var(--primary-gold);
}

.gold-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.gold-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--navy);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.gold-feature-content h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gold-feature-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Team Section
   ============================================ */

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.team-card-role {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.team-card-exp {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-section {
    background: var(--light-cream);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-gold);
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.testimonial-author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-section {
    background: var(--white);
}

.contact-info-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--navy);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-info-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.contact-form {
    background: var(--light-cream);
    padding: 3rem;
    border-radius: 15px;
}

.form-control {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* ============================================
   Gallery
   ============================================ */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--primary-gold);
    font-size: 2rem;
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    color: var(--navy);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-title {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-gold-vault.jpg') center/cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-title span {
    color: var(--primary-gold);
}

.page-breadcrumb {
    color: rgba(255,255,255,0.7);
}

.page-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   About Page
   ============================================ */

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-image img {
    width: 100%;
}

.about-content h3 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--navy);
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.value-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info-box,
    .contact-form {
        padding: 2rem;
    }
}

/* ============================================
   Utilities
   ============================================ */

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

.border-gold {
    border-color: var(--primary-gold) !important;
}

/* ============================================
   Google Translate Custom Styling
   ============================================ */

.translate-container {
    display: inline-block;
    position: relative;
}

.translate-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--navy);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.translate-btn:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.4);
}

.translate-btn i {
    font-size: 16px;
}

.translate-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--navy);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    min-width: 150px;
    display: none;
    z-index: 1000;
    border: 1px solid var(--primary-gold);
}

.translate-dropdown.active {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.translate-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.translate-option:last-child {
    border-bottom: none;
}

.translate-option:hover {
    background: rgba(201, 169, 98, 0.2);
}

.translate-option.active {
    background: var(--primary-gold);
    color: var(--navy);
}

.translate-option img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.translate-option span {
    font-size: 14px;
    font-weight: 500;
}

/* Hide Google Translate default elements */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget span {
    display: none !important;
}

#goog-gt-tt, .goog-te-balloon-frame, #goog-gt-vt, .goog-te-menu-value span {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

.skiptranslate {
    display: none !important;
}

/* Navbar integration */
.navbar .translate-container {
    margin-left: 15px;
}

@media (max-width: 991px) {
    .navbar .translate-container {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
}
