/* Sleeky Pro - Premium Photography Template Styles */

/*

TemplateMo 598 Sleeky Pro

https://templatemo.com/tm-598-sleeky-pro

*/

:root {
    --rtblue: #2e62aa;
    --rtgrey: #b2b5b4;
    --titlecolor: linear-gradient(135deg, #2e62aa, #b2b5b4);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #2e62aa, #b2b5b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    position: relative;
    display: block;
}

.nav-menu a:hover {
    color: var(--rtgrey);
    background: var(--rtblue);
}

.nav-menu a.active {
    color: white;
    background: var(--rtblue);
    box-shadow: 0 4px 15px var(--rtblue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: var(--rtblue) ;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--rtgrey);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.showroom {
  text-align: center;
  padding: 60px 20px;
}

.showroom h1 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
}

.work-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
}

.info {
  padding: 15px 20px;
  background: #fff;
}

.info h2 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.info p {
  font-size: 0.95rem;
  color: #777;
}

.section {
    padding: 120px 20px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--titlecolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(30, 60, 114, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rtblue);
    box-shadow: 0 0 0 3px var(--rtblue);
    background: white;
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
}

.submit-btn {
    background: var(--titlecolor);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--rtblue);
}

.contact-info {
    padding: 60px 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--titlecolor);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    margin-left: 30px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px var(--rtblue);
}

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, var(--rtblue) 100%);
    color: white;
    padding: 60px 20px 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(127, 255, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 171, 145, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    background: var(--titlecolor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #B0BEC5;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0BEC5;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--titlecolor);
    color: white;
    transform: translateY(-3px);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--titlecolor);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #B0BEC5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-link:hover {
    color: var(--rtblue);
    padding-left: 10px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--rtgrey);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #90A4AE;
}

.footer-credits {
    font-size: 14px;
    color: #90A4AE;
}

.footer-credits a {
    color: #FF6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: #7FFFD4;
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 30px 20px;
        border-radius: 0;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 10px 0;
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        border-radius: 15px;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-svg {
        width: 35px;
        height: 35px;
    }

    .slider-container {
        width: 95vw;
        height: calc(47.5vw + 100px);
    }

    .slider-stage {
        height: 47.5vw;
    }

    .text-overlay {
        height: 100px;
        padding: 0 20px;
        bottom: 75px;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .slide-description {
        font-size: 14px;
        line-height: 1.3;
    }

    .nav-arrow {
        width: 48px;
        height: 48px;
        top: min(calc(23.75vw), 300px);
    }

    .nav-arrow.prev {
        left: 15px;
    }

    .nav-arrow.next {
        right: 15px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .controls {
        top: 15px;
        right: 15px;
        gap: 12px;
    }

    .dots {
        top: 15px;
        gap: 12px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .thumbnail {
        width: 80px;
        height: 53px;
    }

    .thumbnails-container {
        gap: 10px;
        bottom: 0px;
    }

    .slice-cube {
        transform: translateZ(-150px) rotateX(0deg);
    }

    .slice-cube.rotate-1 {
        transform: translateZ(-150px) rotateX(90deg);
    }

    .slice-cube.rotate-2 {
        transform: translateZ(-150px) rotateX(180deg);
    }

    .slice-cube.rotate-3 {
        transform: translateZ(-150px) rotateX(270deg);
    }

    .slice-face.face-1 {
        transform: rotateX(0deg) translateZ(150px);
    }

    .slice-face.face-2 {
        transform: rotateX(-90deg) translateZ(150px);
    }

    .slice-face.face-3 {
        transform: rotateX(-180deg) translateZ(150px);
    }

    .slice-face.face-4 {
        transform: rotateX(-270deg) translateZ(150px);
    }

    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .service-tab:hover,
    .service-tab.active {
        transform: translateX(0);
    }

    .services-content {
        padding: 40px 30px;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 10px;
    }

    .stats-futuristic {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .stat-futuristic {
        padding: 25px 15px;
    }

    .stat-futuristic h4 {
        font-size: 24px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-copyright,
    .footer-credits {
        font-size: 13px;
    }
}