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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-menu li a:hover {
    color: #ff3366;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(139, 69, 19, 0.1);
    border-color: rgba(139, 69, 19, 0.2);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
    background: rgba(160, 82, 45, 0.1);
    border-color: rgba(160, 82, 45, 0.2);
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 25%;
    right: 20%;
    animation-delay: 1s;
    background: rgba(205, 133, 63, 0.1);
    border-color: rgba(205, 133, 63, 0.2);
}

.shape-4 {
    width: 220px;
    height: 220px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
    background: rgba(210, 180, 140, 0.1);
    border-color: rgba(210, 180, 140, 0.2);
}

.shape-5 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    left: 35%;
    animation-delay: 1.5s;
    background: rgba(188, 143, 143, 0.1);
    border-color: rgba(188, 143, 143, 0.2);
}

.shape-6 {
    width: 190px;
    height: 190px;
    bottom: 20%;
    right: 30%;
    animation-delay: 2.5s;
    background: rgba(222, 184, 135, 0.1);
    border-color: rgba(222, 184, 135, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translateY(0) translateX(0);
    }
    25% {
        transform: rotate(45deg) translateY(-30px) translateX(20px);
    }
    50% {
        transform: rotate(45deg) translateY(-15px) translateX(-20px);
    }
    75% {
        transform: rotate(45deg) translateY(20px) translateX(10px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 140px;
    color: #ff3366;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(255, 51, 102, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 28px;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* What We Do Section */
.what-we-do {
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 50%, #C2185B 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 100px 0;
}

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

.what-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.what-left {
    flex: 0 0 280px;
}

.section-number {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.what-right {
    flex: 1;
}

.what-intro {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, #5E72E4 0%, #4C63D2 50%, #3F51B5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 80px 40px;
}

.portfolio-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

.portfolio-text {
    flex: 0 0 380px;
}

.portfolio-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.portfolio-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.portfolio-gallery {
    flex: 1;
    position: relative;
    max-width: 850px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-btn svg {
    width: 26px;
    height: 26px;
    color: #3F51B5;
}

.btn-prev {
    left: 25px;
}

.btn-next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    width: 35px;
    background: #fff;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 50%, #C2185B 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 100px 0;
}

.contact-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.contact-left {
    flex: 0 0 280px;
}

.contact-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-right {
    flex: 1;
}

.contact-intro {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.contact-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.contact-description {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    gap: 60px;
}

.info-item {
    flex: 1;
}

.info-label {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0.9;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-email {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-address {
    margin-bottom: 30px;
}

.footer-address p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.8;
    margin: 5px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social svg {
    width: 100%;
    height: 100%;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.6;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu li a {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 110px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .what-content {
        gap: 60px;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 90px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .shape {
        opacity: 0.5;
    }
    
    .what-we-do,
    .portfolio,
    .contact {
        min-height: auto;
        padding: 80px 0;
    }
    
    .what-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .what-left {
        flex: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .portfolio-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .portfolio-text {
        flex: none;
        text-align: center;
    }
    
    .portfolio-gallery {
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-slider {
        height: 420px;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
    }
    
    .slider-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .btn-prev {
        left: 15px;
    }
    
    .btn-next {
        right: 15px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .contact-left {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 70px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .container-full {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .what-we-do,
    .portfolio,
    .contact {
        padding: 60px 0;
    }
    
    .portfolio-title,
    .contact-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .shape {
        display: none;
    }
    
    .container-full {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .portfolio {
        padding: 60px 20px;
    }
    
    .portfolio-wrapper {
        gap: 40px;
    }
    
    .portfolio-title {
        font-size: 36px;
    }
    
    .gallery-slider {
        height: 320px;
    }
    
    .slider-btn {
        width: 42px;
        height: 42px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-prev {
        left: 10px;
    }
    
    .btn-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-email {
        font-size: 18px;
    }
}

