/* =========================================== */
/* RESET & BASE STYLES */
/* =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ffa500;
    --accent-color: #ff4757;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --hero-gradient: linear-gradient(135deg, #ffb37c, #ff9260);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    background: var(--hero-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

section .section-header,
section .container > * {
    position: relative;
    z-index: 2;
}

.highlight {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

/* =========================================== */
/* TYPOGRAPHY - UPDATED FOR WHITE TEXT */
/* =========================================== */
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================== */
/* BUTTONS */
/* =========================================== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* =========================================== */
/* LOADING SCREEN */
/* =========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.paw {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    margin: 0 10px;
    animation: bounce 1s infinite;
}

.paw:nth-child(2) { animation-delay: 0.2s; }
.paw:nth-child(3) { animation-delay: 0.4s; }

.loader p {
    margin-top: 20px;
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* =========================================== */
/* NAVIGATION */
/* =========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 15px 0;
}

header.scrolled {
    background: rgba(255, 179, 124, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo .brand-logo {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-fox {
    color: white;
}

.logo-fur {
    color: rgba(255, 255, 255, 0.9);
}

.logo-studio {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links-group {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-link span {
    display: inline;
}

.shop-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color) !important;
    padding: 10px 20px;
}

.shop-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    padding: 5px;
}

/* =========================================== */
/* HERO SECTION */
/* =========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    min-height: 50px;
}

.typewriter-text {
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat p {
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.character-display {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.character-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.character-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.character-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: glow 3s infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 3s infinite;
}

.floating-icon:nth-child(1) {
    top: 20px;
    left: 20px;
    color: var(--primary-color);
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20px;
    right: 20px;
    color: var(--secondary-color);
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 30px; opacity: 0.5; }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
}

/* =========================================== */
/* ABOUT SECTION */
/* =========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text h3 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    margin: 0;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    text-align: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border-radius: var(--border-radius);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 3px solid white;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-btn i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* =========================================== */
/* PORTFOLIO CAROUSEL - FIXED & RESPONSIVE */
/* =========================================== */
.portfolio-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.portfolio-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    padding: 20px 10px;
    will-change: transform;
}

.portfolio-item {
    flex: 0 0 calc(33.333% - 20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: white;
}

/* Touch/swipe support */
.carousel-track {
    touch-action: pan-y;
}

/* Loading state */
.portfolio-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    gap: 10px;
}

.loading-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: loading-bounce 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loading-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Image zoom modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* Responsive Design for Portfolio */
@media (max-width: 1200px) {
    .portfolio-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .portfolio-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .portfolio-carousel {
        padding: 0 40px;
    }
    
    .portfolio-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .portfolio-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .portfolio-carousel {
        padding: 0 30px;
    }
    
    .carousel-track {
        gap: 15px;
        padding: 15px 5px;
    }
    
    .portfolio-item {
        flex: 0 0 calc(100% - 15px);
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .portfolio-img {
        height: 200px;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
}

@media (max-width: 360px) {
    .portfolio-carousel {
        padding: 0 20px;
    }
    
    .portfolio-img {
        height: 180px;
    }
}

/* Landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .portfolio-img {
        height: 200px;
    }
    
    .portfolio-section {
        padding: 40px 0;
    }
}
/* =========================================== */
/* PRICING SECTION */
/* =========================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border-color: white;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-price span {
    font-size: 1.5rem;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: white;
}

.pricing-note {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-note i {
    color: white;
    margin-right: 10px;
}

.pricing-note p {
    margin: 0;
}

/* =========================================== */
/* TERMS OF SERVICE */
/* =========================================== */
.tos-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tos-sidebar {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tos-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
}

.tos-nav-item {
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
}

.tos-nav-item:hover, .tos-nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.tos-content {
    padding: 40px;
}

.tos-article {
    display: none;
}

.tos-article.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tos-article h3 {
    margin-bottom: 20px;
}

.tos-article p {
    margin-bottom: 20px;
}

.tos-article ul {
    list-style: none;
    margin: 20px 0;
}

.tos-article li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tos-article li:before {
    content: "•";
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.tos-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

/* =========================================== */
/* CONTACT SECTION */
/* =========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option {
    color: rgba(255, 255, 255, 0.7);
}

.budget-display {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox input {
    width: auto;
}

.contact-info {
    position: relative;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 5px;
}

.info-content a, .info-content p {
    color: rgba(255, 255, 255, 0.9);
}

.info-content a {
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center; /* center the icons horizontally */
}

.social-link {
    position: relative; /* required for tooltip */
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

/* Hover effect */
.social-link:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-3px);
}

/* Tooltip merged here */
.social-link .copy-tooltip {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(8px);
    background: #111;
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Copy feedback animation */
.social-link.show-tooltip .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* SIMPLE FOOTER (FINAL MATCHED VERSION) */

.footer {
    padding: 40px 0 25px;
    background: var(--hero-gradient);
    color: white;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%
    );
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    margin: auto;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.footer-text {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-socials {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-socials a {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    transition: 0.3s;
}

.footer-socials a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}



/* =========================================== */
/* BACK TO TOP */
/* =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-5px);
}

/* =========================================== */
/* ANIMATIONS */
/* =========================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================== */
/* RESPONSIVE DESIGN */
/* =========================================== */

/* Large Tablets */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content,
    .about-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-carousel {
        padding: 0 30px;
    }
    
    .portfolio-item {
        flex: 0 0 240px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card {
        position: static;
    }
    
    .tos-container {
        grid-template-columns: 200px 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-links-group {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(255, 179, 124, 0.98);
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-links-group.active {
        right: 0;
    }
    
    .nav-link {
        padding: 15px;
        border-radius: 8px;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    
    .nav-link span {
        display: inline;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .portfolio-carousel {
        padding: 0 20px;
    }
    
    .portfolio-item {
        flex: 0 0 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tos-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .tos-sidebar {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .tos-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        gap: 5px;
    }
    
    .tos-nav-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .tos-content {
        padding: 30px;
    }
    
    .tos-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 12px 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        display: none;
    }
    
    .character-display {
        max-width: 400px;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .portfolio-carousel {
        padding: 0 10px;
    }
    
    .portfolio-item {
        flex: 0 0 180px;
    }
    
    .portfolio-img {
        height: 200px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Small Mobile Phones */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .character-display {
        max-width: 100%;
    }
    
    .portfolio-item {
        flex: 0 0 160px;
    }
    
    .portfolio-img {
        height: 180px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links-group {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
}

/* Print Styles */
@media print {
    .loading-screen,
    .back-to-top,
    .mobile-menu-btn,
    .hero-bg-shapes,
    .scroll-indicator,
    .social-links,
    .newsletter-form,
    .floating-elements,
    .carousel-btn,
    .carousel-dots {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .container {
        max-width: 100%;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
        background: white !important;
        color: black !important;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    h1, h2, h3, h4, h5,
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .stat h3,
    .stat p,
    .section-title,
    .section-subtitle,
    .pricing-price,
    .feature-content h4,
    .feature-content p,
    .tos-article h3,
    .tos-article p,
    .tos-article li,
    .info-content h4,
    .info-content p,
    .link-group h4,
    .link-group a,
    .footer-logo p,
    .footer-bottom p {
        color: black !important;
    }
    
    .pricing-card,
    .feature-item,
    .tos-container,
    .info-card,
    .pricing-note,
    .portfolio-item {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .shop-btn,
    .play-btn,
    .social-link,
    .feature-icon,
    .info-icon {
        background: #f0f0f0 !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
    
    .portfolio-img {
        filter: grayscale(100%);
    }
}



