.hero {
    background: linear-gradient(135deg, #f4a023 0%, #ff6b35 100%);
    color: #fff;
    padding: 100px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="dots" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="25" cy="5" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="15" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23dots)"/></svg>') repeat;
    z-index: 1;
}
.hero > * {
    position: relative;
    z-index: 2;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text {
    text-align: center;
}
.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}
.hero-image {
    text-align: center;
}
.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    border: 4px solid #fff;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}
.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}
.featured-projects {
    padding: 100px 0;
    background: #fff;
}
.featured-projects h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 60px;
    position: relative;
}
.featured-projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f4a023;
    border-radius: 2px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.project-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 30, 30, 0.1);
    transition: all 0.3s ease;
    position: relative;
}
.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4a023, #ff6b35);
    z-index: 1;
}
.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 30, 30, 0.15);
}
.project-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.project-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}
.project-item:hover img {
    transform: scale(1.02);
}
.project-item h3 {
    padding: 25px 30px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.3;
}
.video-reels {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.video-reels h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 20px;
    position: relative;
}
.video-reels h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f4a023;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.reels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.reel-item {
    position: relative;
    width: 300px;
    max-width: calc(33.333% - 20px);
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 30, 30, 0.1);
    transition: all 0.3s ease;
    background: #000;
    flex-shrink: 0;
}
.reel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 30, 30, 0.15);
}
.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}
.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.reel-item:hover .reel-overlay {
    opacity: 1;
}
.reel-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(244, 160, 35, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-top: auto;
    margin-bottom: auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 160, 35, 0.3);
}
.reel-overlay:hover .reel-play-btn {
    transform: scale(1.1);
    background: rgba(244, 160, 35, 1);
}
.reel-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: auto;
}
.no-video-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(244, 160, 35, 0.05);
    border-radius: 20px;
    border: 2px dashed #f4a023;
    margin: 0 auto;
    max-width: 500px;
}
.no-video-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}
.no-video-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 10px;
}
.no-video-message p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.about-me {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.about-me h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 60px;
    position: relative;
}
.about-me h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f4a023;
    border-radius: 2px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 30, 30, 0.15);
}
.about-content > div {
    text-align: center;
}
.about-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1e1e1e;
    font-weight: 500;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 30, 30, 0.1);
    border-left: 5px solid #f4a023;
    margin-bottom: 25px;
}
.about-content .btn {
    margin-top: 0;
}
.services {
    padding: 100px 0;
    background: #fff;
}
.services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 60px;
    position: relative;
}
.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f4a023;
    border-radius: 2px;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.service {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 30, 30, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.service::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 160, 35, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}
.service:hover::before {
    opacity: 1;
    top: -60%;
    left: -60%;
}
.service:hover {
    transform: translateY(-5px);
    border-color: #f4a023;
    box-shadow: 0 15px 50px rgba(244, 160, 35, 0.2);
}
.service .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}
.service:hover .icon {
    transform: scale(1.1);
}
.service h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.service p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}
.services-cta {
    text-align: center;
    margin-top: 50px;
}
.services-cta .btn {
    font-size: 1.1rem;
    padding: 20px 40px;
} 
