/* 
* Nexty.tech - Modern Software Agency Website
* Main Stylesheet
*/

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Variables */
    --primary-color: #2f81ff;
    --primary-dark: #2036b3;
    --primary-light: #58caff;
    --secondary-color: #02bdf7;
    --accent-color: #f82c9e;
    --dark-color: #0f1225;
    --light-color: #f8f9fc;
    --gray-color: #6c757d;
    --gray-light: #e9eaef;
    --gray-dark: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    
    /* Typography */
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, #2a2d4c 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.6rem;
}

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

button {
    cursor: pointer;
    font-family: var(--body-font);
}

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

.section-padding {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    html {
        font-size: 56.25%; /* 1rem = 9px */
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
}

/* ===== UTILITY CLASSES ===== */

.highlight {
    color: var(--primary-color);
}

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

.bg-primary {
    background-color: var(--primary-color);
    color: white;
}

.bg-accent {
    background-color: var(--gray-light);
}

.bg-dark {
    background-color: var(--dark-color);
    color: white;
}

.underline {
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    margin-bottom: 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-block;
    padding: 1.2rem 2.6rem;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo a {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin-left: 3rem;
}

.nav-links a {
    color: var(--gray-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.cta-btn {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
}

.nav-links a.cta-btn:hover,
.nav-links a.cta-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-links a.cta-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    font-size: 2.4rem;
    color: var(--dark-color);
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }
    
    .nav-links a::after {
        bottom: 0;
    }
}

/* ===== HERO SECTION ===== */

.hero {
    padding: 18rem 0 10rem;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 2rem;
    font-size: 5.2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gray-color);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 991px) {
    .hero {
        padding: 15rem 0 8rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 4rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
}

/* ===== INTRO SECTION ===== */

.intro {
    background-color: white;
}

.intro-text {
    font-size: 1.8rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.stat-item p {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--gray-dark);
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
}

/* ===== SERVICES SECTION ===== */

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 7rem;
    height: 7rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 3rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.services-grid.detailed .service-card {
    text-align: left;
}

.services-grid.detailed .service-icon {
    margin: 0 0 2rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
}

/* ===== PRODUCTS SECTION ===== */

.featured-product {
    display: flex;
    align-items: center;
    gap: 5rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-content {
    flex: 1;
    padding: 5rem;
}

.product-image {
    flex: 1;
    max-width: 500px;
}

.feature-list {
    list-style: none;
    margin: 2rem 0 3rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
}

@media (max-width: 991px) {
    .featured-product {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-content {
        padding: 3rem;
    }
    
    .product-image {
        max-width: 100%;
        order: -1;
    }
}

/* ===== WHY US SECTION ===== */

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.reason-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.reason-icon {
    width: 7rem;
    height: 7rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.reason-icon i {
    font-size: 3rem;
    color: white;
}

.reason-card h3 {
    margin-bottom: 1.5rem;
}

.reason-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-family: sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin-right: 2rem;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-controls button {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 1rem;
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 3rem 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.6rem;
    }
}

/* ===== CTA SECTION ===== */

.cta-section {
    background: var(--gradient-primary);
    padding: 8rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.6rem;
}

.cta-section p {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--dark-color);
    color: white;
}

/* ===== FOOTER ===== */

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo a {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    min-width: 160px;
}

.footer-column h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 1rem;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }
}

/* ===== PAGE HEADER ===== */

.page-header {
    background-color: var(--light-color);
    padding: 15rem 0 5rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header .underline {
    margin: 0 auto 2rem;
}

.page-subtitle {
    font-size: 2rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE STYLES ===== */

.vision-mission .two-column {
    display: flex;
    gap: 4rem;
}

.vision-mission .column {
    flex: 1;
}

.content-box {
    padding: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    
}

.story-image {
    flex: 1;
    max-width: 500px;
    border: #fff 8px solid;
    border-radius: 12px;
}

.story-image img {
    border-radius: 12px;
}

.story-text {
    flex: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 7rem;
    height: 7rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon i {
    font-size: 3rem;
    color: white;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin: 2rem 0 0.5rem;
    padding: 0 2rem;
    text-align: center;
}

.team-member p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
    padding: 0 2rem;
}

@media (max-width: 991px) {
    .vision-mission .two-column,
    .story-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .story-image {
        max-width: 100%;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 6rem;
    left: 3rem;
    height: calc(100% - 3rem);
    width: 1px;
    background-color: var(--primary-light);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 3rem;
    z-index: 1;
    font-family: var(--heading-font);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.tech-category h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.tech-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.tech-icon p {
    text-align: center;
    margin-bottom: 0;
    font-size: 1.4rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: white;
}

.faq-question {
    padding: 2rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

/* ===== PRODUCTS PAGE STYLES ===== */

.product-showcase {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.product-showcase-image {
    flex: 1;
    max-width: 600px;
}

.product-showcase-content {
    flex: 1;
    padding: 4rem;
}

.product-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.product-tagline {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.product-description {
    margin-bottom: 3rem;
}

.product-features h3 {
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 3rem;
}

.product-features li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 1.5rem;
    font-size: 1.8rem;
}

.product-cta {
    display: flex;
    gap: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-card .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.coming-soon-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 1.2rem;
    font-weight: 500;
}

.product-content {
    padding: 2.5rem;
}

.product-content h3 {
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-tags span {
    background-color: var(--gray-light);
    color: var(--gray-dark);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
}

.custom-product .two-column {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.custom-product .column {
    flex: 1;
}

.image-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .product-showcase {
        flex-direction: column;
    }
    
    .product-showcase-image {
        max-width: 100%;
    }
    
    .product-showcase-content {
        padding: 3rem;
    }
    
    .custom-product .two-column {
        flex-direction: column;
    }
    
    .product-cta {
        flex-wrap: wrap;
    }
}

/* ===== BLOG PAGE STYLES ===== */

.blog-layout {
    display: flex;
    gap: 5rem;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    min-width: 300px;
}

.blog-post {
    margin-bottom: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-post:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.post-category span {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
}

.post-content {
    padding: 3rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 1.4rem;
}

.blog-post h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.blog-post h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.blog-post p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-post.featured {
    display: flex;
    flex-direction: column;
}

.blog-post.featured .post-image {
    height: 400px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 0.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: white;
}

.pagination a.next {
    width: auto;
    padding: 0 2rem;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.blog-search {
    display: flex;
}

.blog-search input {
    flex: 1;
    padding: 1.2rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
    font-size: 1.4rem;
}

.blog-search button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.blog-search button:hover {
    background-color: var(--primary-dark);
}

.category-list {
    list-style: none;
    margin: 0;
}

.category-list li {
    margin-bottom: 1.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--gray-dark);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-list a span {
    color: var(--gray-color);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recent-post {
    display: flex;
    gap: 1.5rem;
}

.recent-post img {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.recent-post h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.recent-post span {
    font-size: 1.2rem;
    color: var(--gray-color);
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    outline: none;
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .blog-layout {
        flex-direction: column;
    }
    
    .blog-sidebar {
        order: -1;
        margin-bottom: 4rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-info-section {
    margin-bottom: 5rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.info-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-width: 250px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 2.4rem;
    color: white;
}

.info-content h3 {
    margin-bottom: 1rem;
}

.info-content p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    outline: none;
    font-size: 1.6rem;
    font-family: var(--body-font);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 11, 255, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.form-checkbox input {
    width: auto;
}

.map-section {
    height: 450px;
    margin-top: 8rem;
}

.google-map {
    height: 100%;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
    
    .info-item {
        min-width: 100%;
    }
}

.logo img {
    max-height: 75px;
    width: auto;
} 