/* Originalne boje */
:root {
    --primary: #1a56db;
    --primary-dark: #0e2a47;
    --primary-darker: #0a192f;
    --accent: #2d9cdb;
    --accent-light: #64ffda;
    --orange: #FF7A00;
    --orange-light: #ff9d42;
    --white: #FFFFFF;
    --light: #f0f7ff;
    --dark: #0a192f;
    --text: #e6f1ff;
    --light-text: #f8f9fa;
    --card-bg: rgba(10, 25, 47, 0.7);
    
    /* Praznične boje za akcente */
    --holiday-red: #d32f2f;
    --holiday-green: #2e7d32;
    --holiday-gold: #ffd700;
    --holiday-silver: #c0c0c0;
}

/* GLOBALNO REŠENJE ZA HORIZONTALNI SCROLL BAR */
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

*:before,
*:after {
    box-sizing: border-box;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 156, 219, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: -1;
    pointer-events: none;
}

/* GLOBALNA PRAVILA ZA SPREČAVANJE PREKORAČENJA */
img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Snežne pahuljice */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1.5em;
    opacity: 0.8;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}
.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 10s;
    animation-delay: 1s;
}
.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 12s;
    animation-delay: 2s;
}
.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 9s;
    animation-delay: 3s;
}
.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 11s;
    animation-delay: 4s;
}
.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 7s;
    animation-delay: 5s;
}
.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 13s;
    animation-delay: 6s;
}
.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 8s;
    animation-delay: 7s;
}
.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 10s;
    animation-delay: 8s;
}
.snowflake:nth-child(10) {
    left: 95%;
    animation-duration: 12s;
    animation-delay: 9s;
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        top: 110%;
        transform: translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Holiday Banner */
.holiday-banner {
    background: linear-gradient(90deg, var(--holiday-red), var(--holiday-green), var(--holiday-gold));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-top: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: bannerPulse 3s infinite;
}

.holiday-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

.holiday-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.holiday-content i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bannerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Header */
header {
    background: rgba(10, 25, 47, 0.95);
    color: var(--light-text);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--holiday-gold);
}

.header-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 800;
    color: var(--accent-light);
    text-transform: uppercase;
    text-decoration: none;
    max-width: 60%;
    overflow: hidden;
}

.logo img {
    height: clamp(35px, 8vw, 50px);
    margin-right: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Relocation Notice in Header */
.relocation-header-notice {
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.9), rgba(255, 215, 0, 0.9));
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulseWarning 2s infinite;
}

.relocation-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-darker);
    font-weight: 600;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
}

.relocation-header-content i {
    color: var(--holiday-red);
    font-size: 1.2rem;
}

@keyframes pulseWarning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

nav {
    padding: 10px 20px;
    width: 100%;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: clamp(10px, 3vw, 20px);
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--orange);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-light);
    background: none;
    border: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(45, 156, 219, 0.2);
    border: 1px solid var(--accent-light);
    color: var(--accent-light);
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(45, 156, 219, 0.4);
}

/* Responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 15px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.95)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
    padding: clamp(180px, 25vh, 200px) 0 clamp(40px, 10vh, 60px);
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
    word-break: break-word;
    hyphens: auto;
}

.hero p {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text);
    animation: fadeInUp 1.2s ease;
    word-break: break-word;
    hyphens: auto;
}

/* Holiday Decoration */
.holiday-decoration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto 30px;
    max-width: 800px;
}

.holiday-icon {
    font-size: 2.5rem;
    color: var(--holiday-gold);
    animation: spin 4s linear infinite;
}

.holiday-icon.left {
    animation-direction: reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-image {
    max-width: 90%;
    width: 100%;
    margin: 30px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--holiday-gold);
    box-sizing: border-box;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

/* Relocation Notice */
.relocation-notice {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.9), rgba(45, 156, 219, 0.9));
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto 0;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--holiday-gold);
    animation: pulseWarning 2s infinite;
}

.relocation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    text-align: center;
}

.relocation-content i {
    font-size: 2rem;
    color: var(--holiday-gold);
    animation: bounce 2s infinite;
}

.relocation-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.relocation-text p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.relocation-text .relocation-small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: clamp(10px, 3vw, 15px) clamp(20px, 5vw, 30px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.4s ease;
    margin: 10px;
    text-align: center;
    max-width: 280px;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.orange-button {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4);
}

.white-button {
    background: linear-gradient(135deg, var(--white) 0%, #F0F0F0 100%);
    color: var(--primary-darker);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
}

.blue-button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 5px 25px rgba(45, 156, 219, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.6);
}

.white-button:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

.blue-button:hover {
    box-shadow: 0 10px 30px rgba(45, 156, 219, 0.6);
}

/* Actions Section */
.actions {
    padding: clamp(40px, 10vh, 80px) 0;
    background: rgba(10, 25, 47, 0.8);
    position: relative;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(30px, 8vh, 50px);
    position: relative;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-title h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    color: var(--accent-light);
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
    word-wrap: break-word;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 3px;
}

.holiday-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    color: var(--holiday-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.holiday-subtitle i {
    animation: bounce 2s infinite;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.holiday-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: 15px;
    border: 2px solid var(--holiday-gold);
    transition: all 0.4s;
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    position: relative;
    overflow: hidden;
}

.holiday-card::before {
    content: '🎄';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.holiday-card:hover {
    transform: translateY(-10px);
    background: rgba(26, 86, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--orange);
}

.holiday-card i {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    color: var(--accent-light);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.holiday-card:hover i {
    transform: scale(1.2);
    color: var(--orange);
}

.holiday-card h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--accent-light);
    margin-bottom: 15px;
    word-wrap: break-word;
}

.holiday-card p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 3vw, 1rem);
    word-wrap: break-word;
}

/* Services Section */
.services {
    padding: clamp(50px, 12vh, 80px) 0;
    position: relative;
    width: 100%;
}

.relocation-service-notice {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--holiday-gold);
    border-radius: 10px;
    padding: 10px 20px;
    margin: 20px auto 0;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--holiday-gold);
    font-weight: 600;
    animation: pulseWarning 2s infinite;
}

.relocation-service-notice i {
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.holiday-service {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    position: relative;
    border: 2px solid var(--holiday-gold);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.holiday-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 156, 219, 0.3);
    border-color: var(--orange);
}

.holiday-icon-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    height: clamp(120px, 25vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: white;
    position: relative;
    overflow: hidden;
}

.holiday-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.service-content {
    padding: 25px 20px;
    text-align: center;
    box-sizing: border-box;
}

.service-content h3 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    color: var(--accent-light);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    word-wrap: break-word;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.relocation-mini-notice {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--holiday-gold);
    border-radius: 5px;
    padding: 8px 12px;
    margin: 10px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--holiday-gold);
    font-size: 0.85rem;
}

.relocation-mini-notice i {
    font-size: 1rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.service-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    word-wrap: break-word;
    box-sizing: border-box;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-light);
    font-size: 1rem;
}

.service-content .cta-button {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
    max-width: 90%;
}

/* Stats Section */
.stats {
    padding: clamp(40px, 10vh, 60px) 0;
    background: rgba(10, 25, 47, 0.8);
    position: relative;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.holiday-stat {
    text-align: center;
    padding: 30px 15px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: 15px;
    border: 2px solid var(--holiday-gold);
    transition: all 0.4s;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.holiday-stat::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.3;
}

.holiday-stat:hover {
    transform: translateY(-10px);
    background: rgba(26, 86, 219, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.holiday-stat i {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--accent-light);
    margin-bottom: 15px;
}

.holiday-stat .number {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 5px;
    line-height: 1;
}

.holiday-stat .label {
    font-size: clamp(0.85rem, 3vw, 1rem);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
}

/* Social Media Section */
.social {
    padding: clamp(40px, 10vh, 60px) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    position: relative;
    text-align: center;
    width: 100%;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.holiday-social {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px 20px;
    border: 2px solid var(--holiday-gold);
    transition: all 0.4s;
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.holiday-social::before {
    content: '🎅';
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.3;
}

.holiday-social:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(45, 156, 219, 0.3);
}

.holiday-social i {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--accent-light);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.holiday-social:hover i {
    transform: scale(1.2);
    color: var(--orange);
}

.holiday-social h3 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    color: var(--accent-light);
    margin-bottom: 10px;
    word-wrap: break-word;
}

.holiday-social p {
    color: var(--text);
    margin-bottom: 15px;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    word-wrap: break-word;
}

/* Contact Section */
.contact {
    padding: clamp(50px, 12vh, 80px) 0;
    position: relative;
    width: 100%;
}

.contact-subtitle {
    margin-top: 15px;
}

.relocation-contact-notice {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--holiday-gold);
    border-radius: 10px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--holiday-gold);
    font-weight: 600;
    animation: pulseWarning 2s infinite;
}

.relocation-contact-notice i {
    font-size: 1.2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.holiday-contact {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--holiday-gold);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.holiday-contact::before {
    content: '🎄';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.2;
}

.holiday-contact::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.2;
}

.holiday-contact h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    color: var(--accent-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    word-wrap: break-word;
}

.holiday-contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.holiday-contact-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(45, 156, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
    flex-shrink: 0;
    border: 2px solid var(--holiday-gold);
}

.contact-text h3 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: var(--accent-light);
    margin-bottom: 5px;
    word-wrap: break-word;
}

.contact-text p {
    color: var(--text);
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.5;
    word-wrap: break-word;
}

.new-address {
    color: var(--holiday-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 5px 0;
}

.holiday-hours {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    padding: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.holiday-note {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    padding: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.holiday-email {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--orange);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 5px;
    font-size: clamp(0.9rem, 3vw, 1rem);
    word-break: break-all;
}

.holiday-email:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    font-size: 1.2rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.social-icons a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: rgba(10, 25, 47, 0.95);
    color: var(--light-text);
    padding: clamp(40px, 10vh, 60px) 0 30px;
    position: relative;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-column {
    padding: 0 15px;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    color: var(--accent-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    word-wrap: break-word;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-column p {
    margin-bottom: 15px;
    color: #a8b2d1;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.6;
    word-wrap: break-word;
}

.holiday-footer-message {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--holiday-gold);
    font-weight: 600;
}

.relocation-footer {
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid var(--holiday-red);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    color: var(--text);
    font-size: 0.85rem;
}

.relocation-footer i {
    color: var(--holiday-red);
    margin-right: 5px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    word-wrap: break-word;
}

.footer-column ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-light);
    font-size: 1rem;
}

.footer-column ul li a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    word-wrap: break-word;
}

.footer-column ul li a:hover {
    color: var(--accent-light);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8b2d1;
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    width: 100%;
    padding: 20px 20px 0;
    box-sizing: border-box;
    word-wrap: break-word;
}

.holiday-copyright {
    color: var(--holiday-gold);
    font-weight: 600;
    margin-top: 10px;
    font-size: 1rem;
}

/* IMPROVED SEO SECTION */
.seo-section {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(26, 86, 219, 0.15) 100%);
    padding: clamp(50px, 10vh, 70px) 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.08) 0%, transparent 40%);
    z-index: -1;
}

.seo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-content {
    background: rgba(10, 25, 47, 0.7);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--holiday-gold);
    backdrop-filter: blur(8px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 156, 219, 0.1) 0%, transparent 70%);
}

.seo-content h2 {
    color: var(--accent-light);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.seo-content p {
    color: rgba(230, 241, 255, 0.9);
    font-size: clamp(1.05rem, 3vw, 1.15rem);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--accent-light);
}

.holiday-greeting {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--holiday-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.holiday-greeting i {
    animation: bounce 2s infinite;
}

.keyword-tag {
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    transition: all 0.3s;
    word-wrap: break-word;
}

.keyword-tag:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .actions-grid,
    .services-grid,
    .stats-grid,
    .social-grid {
        padding: 0 15px;
    }
    
    .footer-content {
        padding: 0 15px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 12px 15px;
    }
    
    nav {
        padding: 10px 15px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-darker);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo span {
        display: none;
    }
    
    .relocation-header-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .relocation-header-content i {
        font-size: 1rem;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 80vh;
        padding: clamp(160px, 20vh, 180px) 0 clamp(30px, 8vh, 50px);
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .holiday-decoration {
        gap: 10px;
    }
    
    .holiday-icon {
        font-size: 2rem;
    }
    
    .relocation-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .actions-grid,
    .services-grid,
    .stats-grid,
    .social-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .section-title {
        padding: 0 15px;
    }
    
    .seo-container {
        padding: 0 15px;
    }
    
    .language-switcher {
        margin-left: 15px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .holiday-subtitle {
        flex-direction: column;
        gap: 10px;
    }
    
    .holiday-greeting {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-top {
        padding: 12px 10px;
    }
    
    nav {
        padding: 10px 10px;
    }
    
    .hero {
        min-height: 70vh;
        padding: clamp(140px, 18vh, 160px) 0 clamp(20px, 6vh, 40px);
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .actions-grid,
    .services-grid,
    .stats-grid,
    .social-grid {
        padding: 0 10px;
        gap: 10px;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .contact-container {
        padding: 0 10px;
    }
    
    .section-title {
        padding: 0 10px;
    }
    
    .seo-container {
        padding: 0 10px;
    }
    
    .holiday-card,
    .holiday-service,
    .holiday-stat,
    .holiday-social,
    .holiday-contact,
    .seo-content {
        padding: 20px 15px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content ul {
        padding: 0 10px;
    }
    
    .cta-button {
        max-width: 90%;
        margin: 10px auto;
    }
    
    .relocation-notice {
        padding: 15px;
    }
    
    .holiday-banner {
        font-size: 0.8rem;
    }
    
    .relocation-header-notice {
        padding: 8px 10px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* Additional safety measures */
section, div, header, footer, main, article, aside {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* Text selection styling */
::selection {
    background: var(--orange);
    color: white;
}

::-moz-selection {
    background: var(--orange);
    color: white;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    * {
        color: black !important;
        background: white !important;
    }
    
    .hero::before,
    body::before {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }
    
    .snowflakes,
    .holiday-banner,
    .relocation-header-notice {
        display: none;
    }
}