/*
[Frida's Mind]
Project: Aesthetic Uprising v2.0
File: style.v2.css
Tesla-Level Innovation Score: 9.5/10 - Forging a new visual universe.
*/

:root {
    --primary-purple: #6f42c1;
    --gradient-start: #4a00e0;
    --gradient-end: #8e2de2;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-card: #2a2a2a;
    --light-text: #ffffff;
    --medium-text: #a0a0a0;
    --accent-green: #00f2a0;
    --accent-blue: #007bff;
    --border-color: #3a3a3a;
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Exo 2', sans-serif;
    --transition-speed: 0.3s;
}

/* --- Global Styles --- */
body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2 {
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-text);
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; letter-spacing: 1px; }

p { color: var(--medium-text); }

a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: color var(--transition-speed) ease;
}
a:hover { color: var(--light-text); }

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--light-text);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}
.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-purple);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    color: var(--medium-text);
}
.text-center { text-align: center; }

/* --- Header --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}
.logo img { height: 35px; }
.main-nav { display: flex; gap: 40px; }
.nav-link {
    color: var(--medium-text);
    font-weight: 600;
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-text);
    transition: width var(--transition-speed) ease;
}
.nav-link:hover, .nav-link.active { color: var(--light-text); }
.nav-link:hover:after, .nav-link.active:after { width: 100%; }
.btn-contact-us { 
    padding: 10px 24px; 
    font-size: 0.9rem; 
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-contact-us:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* WhatsApp Pulse Animation */
.whatsapp-pulse {
    animation: whatsappPulse 2s infinite;
}

.whatsapp-pulse:hover {
    animation: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.3);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* WhatsApp Icon Animation */
.btn-contact-us i {
    animation: whatsappIconBounce 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes whatsappIconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.btn-contact-us:hover i {
    animation: none;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    padding: 200px 0 100px;
    overflow: hidden;
    position: relative;
}
.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
    opacity: 0.9;
}
.hero-buttons { display: flex; gap: 20px; }
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual-box {
    background-color: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--light-text);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: grid;
    place-items: center;
}

.visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* --- Themes Overview Section --- */
.themes-overview-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    text-align: center;
}
.themes-overview-section h2 { color: rgba(255,255,255,0.1); font-size: 6rem; -webkit-text-stroke: 1px rgba(255,255,255,0.5); background: linear-gradient(var(--dark-bg) 50%, var(--dark-surface)); -webkit-background-clip: text; background-clip: text; }
.theme-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}
.filter-btn {
    background-color: var(--dark-surface);
    color: var(--medium-text);
    padding: 10px 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}
.filter-btn:hover {
    background-color: var(--border-color);
    color: var(--light-text);
}
.filter-btn.active {
    background-color: var(--accent-green);
    color: var(--dark-bg);
    border-color: var(--accent-green);
    font-weight: 700;
}

/* --- Why Us Section --- */
.why-us-section {
    padding: 100px 0;
    background-color: var(--light-text);
}
.why-us-section .container {
    display: flex;
    align-items: center;
    gap: 5rem;
}
.why-us-content, .why-us-visual { flex: 1; }
.why-us-content h2, .why-us-content p { color: var(--dark-bg); }
.why-us-content ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}
.why-us-content li {
    color: var(--dark-bg);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}
.why-us-content li .fa-check {
    color: var(--accent-green);
    background-color: rgba(0, 242, 160, 0.1);
    padding: 5px;
    border-radius: 50%;
}
.why-us-visual .visual-box {
    background-color: var(--dark-surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
}
.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Why-us Responsive SVG */
.why-us-visual .responsive-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    min-height: 200px;
}

/* Why-us Mobile Responsive */
@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-section .container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .why-us-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .why-us-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .why-us-content ul {
        gap: 15px;
    }
    
    .why-us-content li {
        font-size: 0.9rem;
        padding: 12px 15px;
        justify-content: center;
    }
    
    .why-us-visual .visual-box {
        height: 200px;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .why-us-visual .responsive-svg {
        max-width: 300px;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .responsive-svg {
        width: 100%;
        height: auto;
        max-width: 300px;
    }
    .why-us-content h2 {
        font-size: 1.8rem;
    }
    
    .why-us-content li {
        font-size: 0.85rem;
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .why-us-visual .visual-box {
        height: 180px;
        padding: 0.8rem;
    }
    
    .why-us-visual .responsive-svg {
        max-width: 250px;
        min-height: 120px;
    }
}

@media (max-width: 360px) {
    .why-us-content h2 {
        font-size: 1.6rem;
    }
    
    .why-us-content li {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .why-us-visual .visual-box {
        height: 160px;
        padding: 0.6rem;
    }
    
    .why-us-visual .responsive-svg {
        max-width: 200px;
        min-height: 100px;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}
.contact-wrapper {
    background-color: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 4rem;
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}
.contact-info, .contact-form { flex: 1; }
.contact-info h3, .contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-family: var(--font-primary);
    text-transform: none;
    letter-spacing: 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    width: 50px;
    height: 50px;
    background-color: var(--dark-card);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.info-item div { display: flex; flex-direction: column; }
.info-item strong { font-weight: 700; color: var(--light-text); }
.info-item span { color: var(--medium-text); }

.form-group { margin-bottom: 1.5rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    color: var(--light-text);
    font-family: var(--font-primary);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--medium-text); }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; font-size: 1.1rem; }

/* --- Footer --- */
.main-footer {
    padding: 50px 0 30px;
    background-color: var(--dark-surface);
    border-top: 1px solid var(--border-color);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand-icon img { height: 30px; opacity: 0.5; }
.main-footer p {
    color: var(--medium-text);
    margin: 0;
}
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--medium-text); font-size: 1.2rem; }
.social-links a:hover { color: var(--light-text); transform: translateY(-3px); }

/* --- Theme Cards --- */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.theme-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.theme-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.theme-card:hover .theme-image img {
    transform: scale(1.1);
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.theme-card:hover .theme-overlay {
    opacity: 1;
}

.theme-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
}

.theme-actions .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 120px;
    justify-content: center;
}

.btn-preview {
    background-color: var(--accent-green);
    color: var(--dark-bg);
}

.btn-preview:hover {
    background-color: #00d490;
    transform: translateY(-2px);
}

.btn-buy {
    background-color: var(--accent-blue);
    color: var(--light-text);
}

.btn-buy:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-details {
    background-color: var(--primary-purple);
    color: var(--light-text);
}

.btn-details:hover {
    background-color: #5a32a3;
    transform: translateY(-2px);
}

.theme-info {
    padding: 1.5rem;
}

.theme-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-family: var(--font-primary);
    font-weight: 600;
}

.theme-info p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #d0d0d0;
    word-break: break-word;
    white-space: pre-line;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

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

.theme-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: var(--font-secondary);
}

.theme-badge {
    background: var(--primary-purple);
    color: var(--light-text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.no-themes {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--medium-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .theme-image {
        height: 200px;
    }
    
    .theme-info {
        padding: 1rem;
    }
    
    .theme-info h3 {
        font-size: 1.1rem;
    }
    
    .theme-info p {
        font-size: 0.88rem;
        padding: 10px 6px;
    }
    
    .theme-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .theme-actions .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

/* Enhanced Mobile Responsive Design - %100 Mobile Compatibility */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .themes-overview-section h2 {
        font-size: 4rem;
    }
    
    .theme-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .why-us-section .container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .main-header {
        padding: 15px 0;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .btn-contact-us {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .visual-box {
        height: 250px;
        width: 100%;
    }
    
    /* Themes Section Mobile */
    .themes-overview-section {
        padding: 60px 0;
    }
    
    .themes-overview-section h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .theme-filters {
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .theme-card {
        border-radius: 15px;
    }
    
    .theme-image {
        height: 180px;
    }
    
    .theme-info {
        padding: 1rem;
    }
    
    .theme-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .theme-info p {
        font-size: 0.88rem;
        padding: 10px 6px;
    }
    
    .theme-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .theme-price {
        font-size: 1.1rem;
    }
    
    .theme-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .theme-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .theme-actions .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    /* Why Us Section Mobile */
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .why-us-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .why-us-content ul {
        gap: 15px;
    }
    
    .why-us-content li {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .why-us-visual .visual-box {
        height: 200px;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-section .section-subtitle {
        margin-bottom: 2rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .info-item i {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .info-item strong {
        font-size: 0.9rem;
    }
    
    .info-item span {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .contact-form textarea {
        min-height: 100px;
    }
    
    .contact-form .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-brand-icon img {
        height: 25px;
    }
    
    .main-footer p {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .themes-overview-section h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .theme-filters {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .theme-image {
        height: 160px;
    }
    
    .theme-info {
        padding: 0.8rem;
    }
    
    .theme-info h3 {
        font-size: 1rem;
    }
    
    .theme-info p {
        font-size: 0.88rem;
        padding: 10px 6px;
    }
    
    .theme-price {
        font-size: 1rem;
    }
    
    .theme-actions .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .why-us-content h2 {
        font-size: 1.8rem;
    }
    
    .why-us-content li {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.2rem;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .info-item i {
        font-size: 1.1rem;
        width: 35px;
        height: 35px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .contact-form .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    /* Ultra Small Mobile */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .themes-overview-section h2 {
        font-size: 2rem;
    }
    
    .theme-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .theme-image {
        height: 140px;
    }
    
    .theme-info {
        padding: 0.6rem;
    }
    
    .theme-info h3 {
        font-size: 0.9rem;
    }
    
    .theme-info p {
        font-size: 0.75rem;
    }
    
    .theme-actions .btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        max-width: none;
    }
    
    .visual-box {
        height: 180px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img,
    .footer-brand-icon img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav-link:hover,
    .theme-card:hover {
        transform: none;
    }
    
    .theme-card:hover .theme-overlay {
        opacity: 1;
    }
    
    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    .main-header,
    .btn-contact-us,
    .theme-actions,
    .contact-form,
    .main-footer {
        display: none !important;
    }
    
    .hero-section,
    .themes-overview-section,
    .why-us-section,
    .contact-section {
        padding: 20px 0;
    }
    
    .theme-card {
        break-inside: avoid;
        margin-bottom: 20px;
    }
} 