/* TMingle Styles - Orange and White Theme */

/* Root Variables */
:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8C42;
    --light-orange: #FFB347;
    --dark-orange: #E85D04;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFB347 100%);
    --gradient-orange-dark: linear-gradient(135deg, #E85D04 0%, #FF6B35 100%);
    --gradient-white-orange: linear-gradient(135deg, #FFFFFF 0%, #FFF5EB 100%);
    --shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    --shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.25);
}

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

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

html {
    scroll-behavior: smooth;
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 2rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.btn-download {
    background: var(--gradient-orange) !important;
    color: var(--white) !important;
    border-radius: 25px;
    padding: 8px 25px !important;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-download.active {
    background: var(--gradient-orange-dark) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-white-orange);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-orange);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-orange-dark);
}

.btn-outline-light {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 400px;
    height: 400px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-card i {
    font-size: 8rem;
    color: var(--white);
}

.hero-card i:nth-child(2) {
    position: absolute;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
    right: 50px;
    bottom: 80px;
}

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    width: 350px;
    height: 350px;
    background: var(--gradient-orange);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
}

.about-card i {
    font-size: 6rem;
    color: var(--white);
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: var(--off-white);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-info {
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.info-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-orange);
}

.info-content p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    padding: 30px;
    background: var(--off-white);
    border-radius: 20px;
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-form textarea.form-control {
    resize: none;
}

/* Legal Section */
.legal-section {
    background: var(--off-white);
    min-height: 100vh;
    padding-top: 100px;
}

.legal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* App Section */
.app-section {
    background: var(--gradient-white-orange);
    padding-top: 100px;
}

.app-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--gradient-orange);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
}

.app-logo i {
    font-size: 1.5rem;
}

.app-menu {
    color: var(--white);
    font-size: 1.5rem;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.app-welcome {
    margin-bottom: 25px;
}

.app-welcome h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.app-welcome p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.app-feature {
    background: var(--off-white);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.app-feature:hover {
    background: var(--gradient-orange);
}

.app-feature:hover i,
.app-feature:hover span {
    color: var(--white);
}

.app-feature i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 5px;
}

.app-feature span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.app-pet-card {
    background: var(--gradient-orange);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pet-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pet-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.pet-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.pet-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.app-nav {
    background: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--light-gray);
}

.nav-item {
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active,
.nav-item:hover {
    color: var(--primary-orange);
}

.app-info {
    padding: 30px;
}

.app-description h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.app-description .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.app-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.highlight-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.highlight-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.download-buttons h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    background: var(--text-dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--primary-orange);
}

.store-icon {
    font-size: 2rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-text span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-text strong {
    font-size: 1rem;
}

.app-rating {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    color: var(--text-muted);
}

/* App Features Section */
.app-features-section {
    background: var(--white);
}

.app-feature-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.app-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.app-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.app-feature-card .feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.app-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.app-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-about h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-about h4 i {
    color: var(--primary-orange);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form .form-control {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-form .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-card {
        width: 300px;
        height: 300px;
    }
    
    .hero-card i {
        font-size: 6rem;
    }
    
    .hero-card i:nth-child(2) {
        font-size: 3rem;
        right: 40px;
        bottom: 60px;
    }
    
    .about-card {
        width: 280px;
        height: 280px;
    }
    
    .about-card i {
        font-size: 4.5rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .legal-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-card {
        width: 250px;
        height: 250px;
    }
    
    .hero-card i {
        font-size: 5rem;
    }
    
    .hero-card i:nth-child(2) {
        font-size: 2.5rem;
        right: 30px;
        bottom: 50px;
    }
    
    .about-card {
        width: 220px;
        height: 220px;
    }
    
    .about-card i {
        font-size: 3.5rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .store-buttons {
        flex-direction: column;
    }
    
    .store-btn {
        width: 100%;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-about,
    .footer-links {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .btn-download {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .app-description h2 {
        font-size: 1.8rem;
    }
}
