/* Reset and Base Styles */
:root {
    --primary-color: #FF385C;
    --text-dark: #222;
    --text-light: #6B7280;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
    overflow-x: hidden;
    background: #fff;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #FF385C;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
    padding: 8px 0;
}

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

.nav-cta .btn-nav {
    background: #FF385C;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-cta .btn-nav:hover {
    background: #E31C5F;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #222;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #FFD700;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFD700;
    color: #222;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-item i {
    color: #10B981;
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-home-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.device-card {
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.device-card.active {
    background: #10B981;
    color: white;
    transform: scale(1.05);
}

.device-card i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.device-card span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.status {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    background: #F3F4F6;
    color: #6B7280;
}

.status.on {
    background: #D1FAE5;
    color: #065F46;
}

.status.secure {
    background: #DBEAFE;
    color: #1E40AF;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: #F9FAFB;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 18px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #FF385C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.step p {
    color: #6B7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #FF385C;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: #FF385C;
    border-width: 2px;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FF385C;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF385C, #E31C5F);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.service-card p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.feature::before {
    content: '✓';
    color: #10B981;
    font-weight: 600;
}

.author-location {
    font-size: 14px;
    color: #6B7280;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-badge {
    display: inline-block;
    background: #FEF3F2;
    color: #FF385C;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.about-text h3 {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-text p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.credential i {
    color: #FF385C;
    font-size: 20px;
    margin-top: 4px;
}

.credential h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.credential p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

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

.profile-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #FF385C, #E31C5F);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(255, 56, 92, 0.2);
}

.profile-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
}

.profile-placeholder span {
    font-size: 24px;
    font-weight: 600;
}

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

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    height: fit-content;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method i {
    font-size: 20px;
    color: #FF385C;
    width: 24px;
    text-align: center;
}

.contact-method h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.contact-method p {
    color: #6B7280;
    margin: 0;
}

.contact-method a {
    color: #FF385C;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #F0FDF4;
    border-radius: 8px;
    border: 1px solid #BBF7D0;
}

.response-time i {
    color: #10B981;
}

.response-time span {
    font-size: 14px;
    color: #065F46;
    font-weight: 500;
}

.contact-form-wrapper {
    max-width: 600px;
    width: 100%;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-large {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-note i {
    color: #28a745;
}

/* Success Message Styles */
.success-message {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

.success-content {
    max-width: 400px;
    margin: 0 auto;
}

.success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    display: block;
}

.success-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .success-content i {
        font-size: 3rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #FF385C;
    margin-bottom: 16px;
}

.footer-logo .logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(2270%) hue-rotate(340deg) brightness(98%) contrast(94%);
}

.footer-brand p {
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
    color: #9CA3AF;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 32px 0;
        gap: 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .contact-hero h2 {
        font-size: 32px;
    }

    .services-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content,
    .footer-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-badges {
        justify-content: center;
        gap: 16px;
    }

    .trust-item {
        font-size: 12px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2,
    .about-text h2,
    .contact-hero h2 {
        font-size: 28px;
    }

    .service-card,
    .contact-form,
    .contact-card {
        padding: 24px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image, .gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image,
.gallery-item:hover .gallery-video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.video-item {
    position: relative;
}

.video-item::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-item:hover::before {
    background: rgba(255, 56, 92, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        padding: 20px 15px 15px;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.8rem;
    }
} 