/* ===========================
   DEVCOM NETWORK - MAIN STYLES
   Crow-themed Black & White Design
   =========================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #808080;
    --gray-light: #cccccc;
    --gray-dark: #1a1a1a;
    --shadow: rgba(255, 255, 255, 0.3);
    --shadow-strong: rgba(255, 255, 255, 0.6);
}

html {
    scroll-behavior: smooth;
}

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

/* === CUSTOM CURSOR === */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    mix-blend-mode: difference;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.custom-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-trail {
    position: fixed;
    width: 15px;
    height: 15px;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor-trail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
}

body:hover .custom-cursor,
body:hover .cursor-trail {
    opacity: 1;
}

/* Hide cursor on navbar logo */
.nav-logo:hover ~ * .custom-cursor,
.nav-logo:hover ~ * .cursor-trail {
    opacity: 0 !important;
}

/* Cursor on hover interactive elements */
.custom-cursor.hover::before {
    width: 45px;
    height: 45px;
    border-width: 3px;
}

.custom-cursor.hover::after {
    width: 8px;
    height: 8px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    grid-column: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    grid-column: 2;
    justify-content: center;
}

.nav-music-player {
    grid-column: 3;
}

.hamburger {
    grid-column: 4;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(15deg) scale(1.1);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--white);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    text-shadow: 0 0 10px var(--white);
}

/* Music Player in Navbar (Minimal) */
.nav-music-player {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-player-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 0.8;
}

.nav-player-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}

.nav-volume-slider {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    -webkit-appearance: none;
}

.nav-volume-slider::-webkit-slider-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.nav-volume-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.nav-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.nav-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.nav-volume-slider {
    background: linear-gradient(to right, 
        white 0%, 
        white var(--volume-percent), 
        rgba(255, 255, 255, 0.3) var(--volume-percent), 
        rgba(255, 255, 255, 0.3) 100%
    );
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 2rem 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulseBackground 8s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 3rem;
}

.crow-logo-hero {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    animation: floatCrow 3s ease-in-out infinite;
    transition: filter 0.3s ease;
}

@keyframes floatCrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.logo-container:hover .crow-logo-hero {
    filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 255, 0.8));
}

.feather-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: 1rem;
}

.glitch {
    position: relative;
    text-shadow: 
        0 0 10px var(--white),
        0 0 20px var(--white),
        0 0 40px var(--white);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--white),
            0 0 20px var(--white),
            0 0 40px var(--white);
    }
    50% {
        text-shadow: 
            0 0 20px var(--white),
            0 0 40px var(--white),
            0 0 80px var(--white);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--shadow-strong);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 30px var(--shadow-strong);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.6;
}

.scroll-indicator span {
    width: 3px;
    height: 15px;
    background: var(--white);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollBounce {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === SECTIONS === */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--shadow);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    letter-spacing: 1px;
}

/* === SERVICES SECTION === */
.services {
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 50%, var(--black) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    border-color: var(--white);
    box-shadow: 0 10px 50px var(--shadow);
    transform: translateY(-10px);
}

.service-card.featured {
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
}

.service-card:hover .service-icon svg {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-description {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-light);
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 1.2rem;
}

.service-link {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--white);
}

/* === TEAM SECTION === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: var(--white);
    box-shadow: 0 10px 50px var(--shadow);
    transform: translateY(-10px);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.team-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.team-info {
    padding: 2.5rem;
}

.team-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.team-role {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    position: relative;
    z-index: 1;
    transition: fill 0.3s ease;
}

.social-link:hover {
    box-shadow: 0 0 20px var(--shadow-strong);
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: var(--black);
}

/* === CHANGELOG SECTION === */
.changelog {
    background: var(--gray-dark);
}

.timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--shadow-strong);
}

.timeline-content {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--white);
    box-shadow: 0 5px 30px var(--shadow);
    transform: translateX(10px);
}

.timeline-date {
    color: var(--gray-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* === SHOWCASE SECTION === */
.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.video-card {
    min-width: calc(33.333% - 1.5rem);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.video-card.active {
    opacity: 1;
    transform: scale(1.05);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    border-color: var(--white);
    box-shadow: 0 5px 30px var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: black;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    border-color: var(--white);
    box-shadow: 0 5px 30px var(--shadow);
}

.video-placeholder svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
}

.video-placeholder p {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.video-card h4 {
    margin-top: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--white);
    box-shadow: 0 0 20px var(--shadow-strong);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.carousel-btn:hover svg {
    stroke: var(--black);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-indicators span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators span.active {
    background: var(--white);
    box-shadow: 0 0 10px var(--white);
}

/* === AD CONTAINERS === */
.ad-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.ad-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

/* === CTA SECTION === */
.cta {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    padding: 120px 0;
}

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

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--white);
}

.footer-logo {
    margin-top: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        grid-column: 1 / -1;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-music-player {
        gap: 10px;
    }

    .nav-player-btn {
        width: 32px;
        height: 32px;
    }

    .nav-volume-slider {
        width: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .logo-container {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        min-width: 100%;
    }

    .carousel-btn {
        display: none;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
