/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: black;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    scroll-behavior: smooth;
    margin-top: 120px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Smooth page transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Loading animation for images */
img, video {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    /* General mobile adjustments */
    body {
        margin-top: 80px;
    }
    
    /* Touch-friendly button sizes */
    button, .lang-btn, .carousel-nav {
        min-height: 44px;
        min-width: 44px;
    }
    /* Header adjustments for mobile */
    .header {
        height: 80px;
        padding: 10px 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .culture-text {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    
    .daniels-text {
        font-size: 2rem;
    }
    
    .header-nav {
        margin-top: 20px;
        position: relative;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: -10px;
        right: 0;
    }
    
    /* Hide regular navigation on mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links a {
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: #f0f0f0;
    }
    
    .nav-separator {
        display: none;
    }
    
    /* Minimized header for mobile */
    .header.minimized {
        height: 60px;
        padding: 8px 15px;
    }
    
    .header.minimized .header-title {
        font-size: 1.4rem;
        transform: translateY(-5px);
    }
    
    .header.minimized .culture-text {
        font-size: 1rem;
    }
    
    .header.minimized .daniels-text {
        font-size: 1.4rem;
    }
    
    .header.minimized .header-nav {
        transform: translateY(-10px);
    }
    
    /* Video section mobile */
    .video-section {
        height: calc(100vh - 80px);
        margin-top: 0;
    }
    
    /* Content sections mobile */
    .content-container {
        max-width: 95vw;
        padding: 0 20px;
    }
    
    .section-header {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* Content 1 layout mobile */
    .content-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .image-left {
        margin-left: 0;
        order: 1;
    }
    
    .text-right {
        margin-right: 0;
        order: 2;
    }
    
    .main-image {
        max-width: 100%;
        max-height: 40vh;
    }
    
    .section-text {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
    }
    
    /* Video carousel mobile */
    .video-carousel {
        padding: 0 20px;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .carousel-item {
        min-width: 250px;
    }
    
    .carousel-item video {
        height: 200px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        bottom: -60px;
    }
    
    .prev-btn {
        left: 10px;
        margin-left: 0;
    }
    
    .next-btn {
        right: 10px;
        margin-right: 0;
    }
    
    /* Video switcher mobile */
    .video-container {
        max-width: 95vw;
        height: 300px;
    }
    
    .language-selector {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .lang-btn {
        width: 200px;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    /* Header sections mobile */
    .header1-section,
    .header2-section,
    .header3-section,
    .header3-bottom-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    /* Two boxes container mobile */
    .two-boxes-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-box {
        width: 100%;
        height: 200px;
    }
    
    /* Large content area mobile */
    .large-content-area {
        height: 300px;
    }
}

/* Small Phone Responsive Design */
@media screen and (max-width: 480px) {
    /* Extra small phone adjustments */
    .header {
        height: 70px;
        padding: 8px 10px;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
    
    .culture-text {
        font-size: 1.2rem;
    }
    
    .daniels-text {
        font-size: 1.6rem;
    }
    
    .nav-links a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .content-container {
        max-width: 98vw;
        padding: 0 15px;
    }
    
    .section-header {
        font-size: 1.3rem;
    }
    
    .section-text {
        font-size: 0.9rem;
    }
    
    .carousel-item {
        min-width: 200px;
    }
    
    .carousel-item video {
        height: 150px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: -50px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .lang-btn {
        width: 180px;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .main-image {
        max-height: 35vh;
    }
}

/* Medium Phone Responsive Design */
@media screen and (min-width: 481px) and (max-width: 600px) {
    /* Medium phone adjustments */
    .header {
        height: 75px;
        padding: 10px 12px;
    }
    
    .header-title {
        font-size: 1.6rem;
    }
    
    .culture-text {
        font-size: 1.3rem;
    }
    
    .daniels-text {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        min-width: 220px;
    }
    
    .carousel-item video {
        height: 180px;
    }
    
    .video-container {
        height: 280px;
    }
}

/* Large Phone Responsive Design */
@media screen and (min-width: 601px) and (max-width: 768px) {
    /* Large phone adjustments */
    .header {
        height: 80px;
        padding: 10px 15px;
    }
    
    .header-title {
        font-size: 1.8rem;
    }
    
    .culture-text {
        font-size: 1.4rem;
    }
    
    .daniels-text {
        font-size: 2rem;
    }
    
    .carousel-item {
        min-width: 250px;
    }
    
    .carousel-item video {
        height: 200px;
    }
    
    .video-container {
        height: 300px;
    }
}

/* Landscape Phone Responsive Design */
@media screen and (max-height: 500px) and (orientation: landscape) {
    /* Landscape phone adjustments */
    .header {
        height: 60px;
        padding: 8px 15px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 20px;
    }
    
    .header-nav {
        margin-top: 0;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 20px;
    }
    
    .video-section {
        height: calc(100vh - 60px);
    }
    
    .content-container {
        padding: 0 30px;
    }
    
    .carousel-item {
        min-width: 200px;
    }
    
    .carousel-item video {
        height: 150px;
    }
    
    .video-container {
        height: 250px;
    }
}

/* Custom faster scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

/* Header styles */
.header {
    padding: 20px 20px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    height: 120px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Minimized header when scrolling */
.header.minimized {
    height: 80px;
    padding: 15px 20px;
}

.header.minimized .header-title {
    font-size: 1.8rem;
    transform: translateY(-10px);
}

.header.minimized .header-link {
    cursor: pointer;
    transition: all 0.3s ease;
}

.header.minimized .header-link:hover {
    opacity: 0.8;
}

.header.minimized .culture-text {
    font-size: 1.2rem;
}

.header.minimized .daniels-text {
    font-size: 1.8rem;
}

.header.minimized .header-nav {
    transform: translateY(-15px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: black;
    line-height: 1.1;
    text-align: left;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    width: 100%;
}

.header-link:hover {
    opacity: 0.8;
}

.culture-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.daniels-text {
    font-family: 'Baskerville', 'Times New Roman', serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: black;
    display: block;
    letter-spacing: 1px;
}

/* Header Navigation */
.header-nav {
    /* Navigation is now part of flexbox layout */
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 2, 1);
    position: relative;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.nav-links a:hover {
    color: #333;
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 0;
    margin: 0;
    transform: none;
}

.dropdown-menu a:hover {
    background-color: #f8f8f8;
    color: #000;
    transform: none;
}

.nav-separator {
    color: #666;
    font-weight: 300;
    margin: 0 8px;
}

/* Separator bands */
.separator-band {
    height: 2px;
    background-color: #e0e0e0;
    width: 100%;
}

/* Video section */
.video-section {
    background-color: black;
    padding: 0;
    text-align: center;
    height: calc(100vh - 120px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Header 1 section */
.header1-section {
    background-color: white;
    padding: 0;
    text-align: left;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-left: 0;
    position: relative;
    overflow: hidden;
}

.header1-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.08);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 6s ease-in-out infinite;
}

.header1-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.06);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float 8s ease-in-out infinite reverse;
}

/* Header 2 section */
.header2-section {
    background-color: #f8f8f8;
    padding: 0;
    text-align: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -100px;
    position: relative;
    overflow: hidden;
}

.header2-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: rgba(0,0,0,0.07);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    animation: rotate 20s linear infinite;
}

.header2-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.06);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 15s linear infinite reverse;
}

.header2-section .section-header {
    margin-top: -100px;
    text-align: center;
}

/* Header 3 sections */
.header3-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
    min-height: auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.header3-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 90px;
    height: 90px;
    background: rgba(0,0,0,0.025);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation: pulse 4s ease-in-out infinite;
}

.header3-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.02);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 6s ease-in-out infinite reverse;
}

/* Video Display */
.video-display {
    text-align: center;
    margin-top: 420px;
    min-height: auto;
    padding: 40px 0;
    padding-top: 0.5cm;
    height: auto;
}

.video-section-english,
.video-section-chinese {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.language-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.video-section-english video,
.video-section-chinese video {
    width: 100%;
    max-width: 1000px;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.header3-bottom-section {
    background-color: #f8f8f8;
    padding: 0;
    text-align: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 300px;
    margin-left: 0;
    position: relative;
    overflow: hidden;
}

.header3-bottom-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: rgba(0,0,0,0.08);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: float 10s ease-in-out infinite;
}

.header3-bottom-section::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 25%;
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.02);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: float 12s ease-in-out infinite reverse;
}

/* Content containers */
.content-container {
    max-width: 80vh;
    max-height: 80vh;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    color: black;
    text-align: left;
    max-width: 80%;
    margin: 0;
    margin-bottom: 20px;
}

/* Content layout styling */
.content-layout {
    display: flex;
    align-items: stretch;
    gap: 60px;
    width: 100%;
    justify-content: flex-start;
    padding-left: 100px;
}

.image-left {
    flex: 1;
    text-align: center;
    margin-left: -310px;
}

.text-right {
    flex: 1;
    text-align: left;
    margin-right: -300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-image {
    max-width: 80%;
    max-height: 50vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

















/* Video Carousel */
.video-carousel {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    height: 400px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
    align-items: center;
    transform: translateX(0);
    position: relative;
}

.carousel-item {
    min-width: 300px;
    flex-shrink: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.carousel-item.active {
    transform: scale(1);
    filter: brightness(1);
    z-index: 2;
}

.carousel-item.next {
    transform: scale(0.8);
    filter: brightness(0.6);
    z-index: 1;
}

.carousel-item:not(.active):not(.next) {
    transform: scale(0.6);
    filter: brightness(0.3);
    z-index: 0;
}

.carousel-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.carousel-item:hover video {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 123, 255, 0.3);
}

.carousel-nav {
    position: absolute;
    bottom: -80px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: none;
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 1);
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 1);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.prev-btn {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -100px;
}

.next-btn {
    right: 50%;
    transform: translateX(50%);
    margin-right: -100px;
}

/* Content boxes */
.content-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rounded-box {
    width: 40vh;
    height: 40vh;
    margin: 0 auto;
    aspect-ratio: 1;
}

.large-content-area {
    width: 80vh;
    height: 80vh;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    aspect-ratio: 1;
}

.two-boxes-container {
    display: flex;
    justify-content: center;
    gap: 10vh;
    margin-top: 5vh;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
    
    .culture-text {
        font-size: 1.5rem;
    }
    
    .daniels-text {
        font-size: 2.2rem;
    }
    
    .section-header {
        font-size: 1.8rem;
    }
    
    .section-text {
        font-size: 1.2rem;
    }
    
    .two-boxes-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .rounded-box {
        width: 280px;
        height: 180px;
    }
    
    .large-content-area {
        height: 300px;
    }
} 



/* Shop Image */
.shop-image-container {
    margin-top: 30px;
    text-align: center;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-image {
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.shop-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
    border-color: rgba(0, 123, 255, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: space-around;
}

.contact-box {
    font-size: 1.1rem;
    color: #333;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-box:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0,0,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,0,0,0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.06) 50%, transparent 52%);
    background-size: 100px 100px, 150px 150px, 20px 20px;
    pointer-events: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000000;
    animation: shimmer 3s ease-in-out infinite;
}

.footer-content p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}