/* ===================================
   TourItiner Marketing Website
   Brand Colors:
   Primary: #FF6B35 (Orange)
   Secondary: #1a1a2e (Navy)
   Accent: #17a2b8 (Teal)
   WhatsApp: #25D366
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #1a1a2e;
    --accent-color: #17a2b8;
    --whatsapp-color: #25D366;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::after {
    width: 400px;
    height: 400px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-color), #1fb855);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1fb855, #1aa34a);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #e55a28);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a28, #d94d1a);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #2d2d4a);
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2d2d4a, #3a3a5c);
    box-shadow: 0 10px 35px rgba(26, 26, 46, 0.5);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    height: 56px;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), #e55a28);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #e55a28, #d94d1a);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 28px;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.price-badge {
    display: inline-flex;
    flex-direction: column;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-badge .price {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.price-badge .price-desc {
    font-size: 14px;
    opacity: 0.9;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
}

.trust-badges i {
    color: var(--accent-color);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.powered-by {
    font-size: 14px;
    color: var(--text-light);
}

.powered-by a {
    color: var(--primary-color);
    font-weight: 600;
}

.powered-by a:hover {
    text-decoration: underline;
}

.hero-image {
    position: relative;
}

.dashboard-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Reviews Section */
.reviews {
    background: var(--bg-light);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 30px;
}

.trustpilot-header {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.trustpilot-badge {
    background: var(--white);
    padding: 30px 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trustpilot-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 182, 122, 0.2);
}

.trustpilot-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trustpilot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.tp-star-icon {
    width: 30px;
    height: 30px;
}

.trustpilot-name {
    font-size: 20px;
    font-weight: 700;
    color: #191919;
    font-family: 'Inter', sans-serif;
}

.trustpilot-stars {
    display: flex;
    gap: 3px;
}

.tp-star {
    width: 20px;
    height: 20px;
}

.trustpilot-text {
    font-size: 15px;
    font-weight: 600;
    color: #191919;
    margin-top: 5px;
}

.trustpilot-rating {
    text-align: left;
    border-left: 2px solid var(--bg-light);
    padding-left: 40px;
}

.trustpilot-rating .rating-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.trustpilot-rating .rating-count {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.reviews-slider {
    position: relative;
    margin-bottom: 30px;
}

.reviews-track {
    overflow: hidden;
    padding: 0 10px;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn {
    left: -25px;
}

.slider-btn.next-btn {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-light);
}

.review-info {
    flex: 1;
}

.review-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.review-info p {
    font-size: 13px;
    color: var(--text-light);
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border: 2px solid var(--bg-light);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.stat-icon i {
    font-size: 32px;
    color: var(--white);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.features h2 {
    text-align: center;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--bg-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card ul {
    list-style: none;
}

.feature-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.feature-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 36px;
    color: var(--white);
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-color);
}

/* Screenshots Section */
.screenshots {
    background: var(--white);
}

.screenshots h2 {
    text-align: center;
    margin-bottom: 10px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.screenshot-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.screenshot-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-light);
}

.screenshot-card h4 {
    padding: 20px 20px 5px;
    color: var(--secondary-color);
}

.screenshot-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* Package Section */
.package {
    background: var(--bg-light);
}

.package h2 {
    text-align: center;
    margin-bottom: 10px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-col {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.package-col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.package-col h3 i {
    color: var(--primary-color);
}

.package-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
}

.package-list i {
    color: var(--accent-color);
    margin-top: 4px;
    font-size: 18px;
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 10px;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.price-large {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-large .currency {
    font-size: 32px;
    font-weight: 600;
    margin-top: 10px;
}

.price-large .amount {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.pricing-note {
    font-size: 16px;
    opacity: 0.95;
}

.pricing-features {
    padding: 40px;
}

.pricing-features h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.pricing-features ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 20px;
}

.pricing-cta {
    padding: 0 40px 40px;
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.pricing-assurance {
    margin-top: 20px;
    color: var(--text-light);
    font-style: italic;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-light);
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--white);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* About Developer Section */
.about-developer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-developer h2 {
    text-align: center;
    margin-bottom: 40px;
}

.developer-content {
    text-align: center;
    margin-bottom: 40px;
}

.developer-logo h3 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.developer-logo span {
    color: var(--primary-color);
}

.developer-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.dev-stat {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.dev-stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dev-stat p {
    color: var(--text-light);
    font-size: 14px;
}

.developer-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 10px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-option {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-option.whatsapp:hover {
    border-color: var(--whatsapp-color);
}

.contact-option.phone:hover {
    border-color: var(--primary-color);
}

.contact-option.email:hover {
    border-color: var(--accent-color);
}

.contact-option i {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-option.whatsapp i {
    color: var(--whatsapp-color);
}

.contact-option.phone i {
    color: var(--primary-color);
}

.contact-option.email i {
    color: var(--accent-color);
}

.contact-option h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-option p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.info-item h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-developer p,
.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.innocraft-link {
    color: var(--primary-color);
    font-weight: 600;
}

.innocraft-link:hover {
    text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .developer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .trustpilot-badge {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    
    .trustpilot-rating {
        border-left: none;
        border-top: 2px solid var(--bg-light);
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 30px 25px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    
    section {
        padding: 60px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .developer-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .review-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn.prev-btn {
        left: 5px;
    }
    
    .slider-btn.next-btn {
        right: 5px;
    }
    
    .trustpilot-badge {
        padding: 25px 20px;
    }
    
    .tp-star-icon {
        width: 26px;
        height: 26px;
    }
    
    .trustpilot-name {
        font-size: 18px;
    }
    
    .trustpilot-text {
        font-size: 14px;
    }
    
    .trustpilot-rating .rating-score {
        font-size: 20px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .price-badge .price {
        font-size: 24px;
    }
    
    .price-large .amount {
        font-size: 56px;
    }
}

/* Additional Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.page-content {
    padding: 60px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.content-wrapper p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-wrapper ul {
    list-style: none;
    margin-bottom: 20px;
}

.content-wrapper ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.content-wrapper ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.content-wrapper a {
    color: var(--primary-color);
    font-weight: 600;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

.back-home {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
    text-align: center;
}

/* Support Page Specific Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.support-card {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-card .support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-card .support-icon i {
    font-size: 36px;
    color: var(--white);
}

.support-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.support-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.support-hours {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.support-includes {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.include-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    align-items: flex-start;
}

.include-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.include-item h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.include-item p {
    color: var(--text-light);
    margin: 0;
}

.support-cta {
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.support-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.support-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Responsive for Additional Pages */
@media (max-width: 768px) {
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .content-wrapper {
        padding: 0 20px;
    }
}
