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

:root {
    --primary-blue: #003d7a;
    --secondary-blue: #0066cc;
    --accent-orange: #ff8c00;
    --dark-gray: #333;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border-color: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: .4rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Banner Section - Iron Mountain Style */
.hero-banner {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #0288d1 100%);
    clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0 100%);
}

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23e8f1f5" width="800" height="600"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
    padding: 3rem 0;
}

/* Hero Text Section */
.hero-text-section {
    color: var(--dark-gray);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 600px;
}

/* Hero Form Section */
.hero-form-section {
    position: relative;
    z-index: 10;
}

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
    margin-bottom: 0.9rem;
    background: var(--white);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.form-grid input,
.form-grid select {
    margin-bottom: 0;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 1.2rem 0;
    cursor: pointer;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: #ff9d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 20px;
    background: var(--white);
}

.welcome-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.welcome-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
}

.feature-icon-circle svg {
    width: 45px;
    height: 45px;
}

.feature-box h3 {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

.form-cta-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-top: 2rem;
}

/* Video Section */
.video-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 12px;
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Locations Section */
.locations-section {
    padding: 80px 20px;
    background: var(--white);
}

.locations-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

/* World Map Styles */
.world-map-wrapper {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 2/1;
    background: #e8f1f5;
    border-radius: 10px;
    overflow: hidden;
}

.world-map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Map Markers */
.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.map-marker:hover {
    z-index: 20;
    transform: translate(-50%, -100%) scale(1.3);
}

.marker-pin {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    animation: markerPulse 2s infinite;
}

.map-marker.na .marker-pin {
    background: #66bb6a;
}

.map-marker.emea .marker-pin {
    background: #0066cc;
}

.map-marker.apac .marker-pin {
    background: #66bb6a;
}

.marker-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.85);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 3px 8px rgba(0,0,0,0.3), 0 0 0 0 rgba(102, 187, 106, 0.7);
    }
    50% {
        box-shadow: 0 3px 8px rgba(0,0,0,0.3), 0 0 0 10px rgba(102, 187, 106, 0);
    }
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.legend-dot.na {
    background: #66bb6a;
}

.legend-dot.emea {
    background: #0066cc;
}

.legend-dot.apac {
    background: #66bb6a;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.region-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.region-dot.na {
    background: #66bb6a;
}

.region-dot.emea {
    background: #0066cc;
}

.region-dot.apac {
    background: #66bb6a;
}

.location-card h3 {
    color: var(--secondary-blue);
    font-size: 1.8rem;
    margin: 0;
}

.location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-card ul {
    list-style: none;
}

.location-card li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.location-card li:last-child {
    border-bottom: none;
}

/* At A Glance Section */
.glance-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.glance-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.glance-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.glance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.glance-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--secondary-blue);
}

.glance-card h3 {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.glance-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* Testimonial Section */
.testimonial-section {
    padding:  20px;
    background: var(--primary-blue);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.quote-icon {
    font-size: 6rem;
    line-height: 0.8;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card blockquote p {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    margin: 1rem 0;
}

.testimonial-author {
    margin-top: 2rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.author-company {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 20px 2rem;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid,
    .glance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid,
    .glance-grid {
        grid-template-columns: 1fr;
    }
    
    .location-list {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card blockquote p {
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.glance-card,
.location-card,
.feature-box {
    animation: fadeInUp 0.6s ease-out;
}



/* Video Section - Updated for YouTube */
.video-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.video-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.video-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* YouTube Video Container */
.youtube-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Hover effect for video container */
.youtube-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Remove old video placeholder styles - DELETE THESE */
.video-placeholder {
    display: none;
}

.play-btn {
    display: none;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-section-title {
        font-size: 2rem;
    }
    
    .video-section-subtitle {
        font-size: 1rem;
    }
}


/* Enhanced animations and hover effects */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.location-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.4s; }

/* Interactive location cards */
.location-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.location-card.active {
  border: 3px solid var(--secondary-blue);
  background: linear-gradient(145deg, #ffffff, #f8fbff);
}
