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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: relative;
    width: 100%;
    background: #fefefe;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-image {
    height: 160px;
    width: auto;
    transition: all 0.3s ease;
    /* Enhanced logo with transparent background - no additional styling needed */
}

/* Keep text logo as fallback - hidden by default */
.logo-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    transition: color 0.3s ease;
    display: none;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 300;
    color: white;
    opacity: 0.8;
    transition: color 0.3s ease;
    display: none;
}

.navbar.scrolled .logo-text,
.navbar.scrolled .logo-subtitle {
    color: #333;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 200px;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(42, 95, 95, 0.1);
    color: #2a5f5f;
}

/* Call Now Button */
.call-now-btn {
    background: rgba(42, 95, 95, 0.1);
    border: 1px solid rgba(42, 95, 95, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.call-now-btn:hover {
    background: rgba(42, 95, 95, 0.2);
    transform: translateY(-1px);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a5f5f;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero image optimization for both home and contact pages */
.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
    width: 100%;
}

.hero-cta {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    align-self: center;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Content Section */
.content-section {
    padding: 120px 0;
    background: #f8f9fa;
    text-align: center;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.section-text {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-cta {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100% !important;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        left: 0 !important;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu.active .nav-link {
        color: #333;
    }

    .dropdown-menu {
        display: none !important;
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
        position: static;
        background: rgba(42, 95, 95, 0.1);
        box-shadow: none;
        border-radius: 0;
        margin-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-link {
        padding: 0.5rem 1rem;
        color: #555;
    }

    .portfolio-container .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .portfolio-description {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .laptop-mockup {
        padding: 15px 15px 45px 15px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        justify-content: center; /* Center the logo on mobile */
    }

    .logo-image {
        height: 120px; /* Larger size on mobile for enhanced logo */
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

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

.portfolio-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.portfolio-description {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: left;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    position: relative;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.laptop-mockup {
    position: relative;
    width: 100%;
    height: auto;
    background: #f0f0f0;
    border-radius: 12px;
    padding: 20px 20px 60px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
}

.laptop-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.3;
}

.laptop-mockup::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

.portfolio-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 10; /* Optimize aspect ratio for laptop mockups */
    object-fit: cover;
}

/* Image optimization */
.portfolio-image {
    content-visibility: auto;
    contain-intrinsic-size: 400px 250px;
}

/* Progressive image loading */
.portfolio-image {
    filter: blur(0.1px); /* Fix for Safari rendering issues */
    transform: translateZ(0); /* Hardware acceleration */
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.02);
}

.portfolio-cta {
    margin-top: 2rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #2a5f5f;
    color: #2a5f5f;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.learn-more-btn:hover {
    background: #2a5f5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 95, 95, 0.3);
}

/* SEO Section */
.seo-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../public/images/scroll.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.seo-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.seo-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    min-height: 400px;
}

.seo-overlay {
    width: 100%;
    height: 100%;
    background: rgba(72, 169, 166, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.seo-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.seo-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.seo-text {
    margin-bottom: 2.5rem;
}

.seo-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: white;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.seo-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.seo-learn-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.architecture-images {
    display: none;
}

/* Additional mobile styles for smaller screens */
@media (max-width: 480px) {
    .portfolio-container .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .portfolio-container {
        padding: 0 1rem;
    }
}

/* Mobile Responsive for SEO Section */
@media (max-width: 768px) {
    .seo-section {
        min-height: 80vh;
        padding: 2rem 0;
        background-attachment: scroll;
    }
    
    .seo-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .seo-overlay {
        width: 100%;
        padding: 40px 30px;
        background: rgba(72, 169, 166, 0.98);
    }
    
    .architecture-images {
        display: none;
    }
    
    .seo-title {
        font-size: 2.5rem;
    }
}

/* Statistics Section */
.stats-section {
    background: rgba(72, 169, 166, 0.95);
    padding: 80px 0;
    text-align: center;
    color: white;
}

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

.stats-content {
    max-width: 600px;
    margin: 0 auto;
}

.stats-intro {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stats-number {
    font-family: 'Merriweather', serif;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 300;
    margin: 0;
    line-height: 1;
    margin-bottom: 1rem;
}

.stats-description {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.stats-note {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-text {
    padding-right: 2rem;
}

.why-choose-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.why-choose-description {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
}

.why-choose-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.benefit-icon {
    color: #2a5f5f;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .why-choose-section {
        padding: 80px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-text {
        padding-right: 0;
        text-align: center;
    }
    
    .benefit-item {
        gap: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 100px 0;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    padding-right: 2rem;
}

.contact-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-description {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-cta {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #2a5f5f;
    color: #2a5f5f;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.contact-cta:hover {
    background: #2a5f5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 95, 95, 0.3);
}

.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.required-indicator {
    color: #e74c3c;
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.required {
    color: #e74c3c;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Merriweather Sans', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2a5f5f;
    box-shadow: 0 0 0 2px rgba(42, 95, 95, 0.1);
}

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

.form-submit {
    background: #2a5f5f;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.form-submit:hover {
    background: #1e4544;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 95, 95, 0.3);
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-text {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    text-transform: lowercase;
}

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

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #48a9a6;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Testimonials Styles */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
    border: 2px solid #48a9a6;
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 100%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-author h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.local-guide {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
    white-space: nowrap;
}

.testimonial-text {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 1.5rem;
    color: #48a9a6;
    position: relative;
    top: 0.1rem;
}

.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: #48a9a6;
    position: relative;
    top: 0.1rem;
}

.cta-section {
    background: linear-gradient(135deg, #48a9a6 0%, #369693 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

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

.cta-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.cta-content p {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #48a9a6;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 600;
    text-transform: lowercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Location Pages Styles */
.location-content {
    padding: 80px 0;
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 1.5rem;
}

.location-text h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.location-text p {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.location-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.location-benefits li {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.stat-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #48a9a6;
    margin: 0 0 0.5rem 0;
}

.stat-item p {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.location-info {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.info-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a5f5f;
    margin: 0 0 1.5rem 0;
}

.info-card h4 {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
}

.areas-list, .landmarks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.areas-list li, .landmarks-list li {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.areas-list li:last-child, .landmarks-list li:last-child {
    border-bottom: none;
}

.price-display {
    text-align: center;
    margin: 1.5rem 0;
}

.price {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #48a9a6;
}

.price-period {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.pricing-description {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.95rem;
    color: #333;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.hosting-note {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.primary {
    background: white;
    color: #48a9a6;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    color: #369693;
}

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

.cta-button.secondary:hover {
    background: white;
    color: #48a9a6;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-text h2 {
        font-size: 1.8rem;
    }
    
    .info-card {
        position: static;
    }
}

/* Industry Pages Styles */
.industry-content {
    padding: 80px 0;
    background: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.retail-solutions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.solution-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #48a9a6;
}

.solution-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: #2a5f5f;
    margin: 0 0 1rem 0;
}

.solution-item p {
    font-family: 'Merriweather Sans', sans-serif;
    color: #666;
    margin-bottom: 1rem;
}

.solution-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-item li {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.9rem;
    color: #555;
    padding: 0.3rem 0;
}

.platform-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.platform-item h4 {
    font-family: 'Merriweather', serif;
    color: #2a5f5f;
    margin: 0 0 0.5rem 0;
}

.platform-price {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #48a9a6;
    float: right;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.platform-features li {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    padding: 0.3rem 0;
}

.process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2a5f5f;
    margin-bottom: 3rem;
    text-transform: lowercase;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #48a9a6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #2a5f5f;
    margin: 0 0 1rem 0;
}

.process-step p {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .retail-solutions {
        gap: 1rem;
    }
    
    .solution-item {
        padding: 1.5rem;
    }
}

/* Services Detail Section */
.services-detail-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #48a9a6;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Case Studies Section */
.case-studies-section {
    padding: 4rem 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-study {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #48a9a6;
}

.case-study h3 {
    color: #333;
    margin-bottom: 1rem;
}

.case-study p {
    margin-bottom: 0.8rem;
}

/* Technology Section */
.technology-section {
    padding: 4rem 0;
    background: #48a9a6;
    color: white;
}

.technology-section .section-title {
    color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-feature {
    text-align: center;
    padding: 1.5rem;
}

.tech-feature h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-feature p {
    color: rgba(255, 255, 255, 0.9);
}

/* Blog Styles */
.coming-soon-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.notify-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notify-form h3 {
    color: #48a9a6;
    margin-bottom: 1.5rem;
}

.blog-hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #48a9a6 0%, #369693 100%);
    color: white;
}

.blog-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.featured-title {
    color: white;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.featured-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-read-more {
    display: inline-block;
    background: white;
    color: #48a9a6;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.featured-read-more:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.blog-main-section {
    padding: 4rem 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-posts {
    min-width: 0;
}

.blog-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #48a9a6;
}

.blog-search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.search-btn {
    padding: 0.8rem 1.5rem;
    background: #48a9a6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #369693;
}

.category-list, .recent-posts-list, .popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #48a9a6;
}

.post-count {
    background: #48a9a6;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
}

.recent-post-item, .popular-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child, .popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link, .popular-post-link {
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.recent-post-link:hover, .popular-post-link:hover {
    color: #48a9a6;
}

.recent-post-title, .popular-post-title {
    display: block;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.recent-post-date, .popular-post-views {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.about-widget p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #666;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-info strong {
    color: #48a9a6;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Individual Blog Post Styles */
.blog-post-header {
    padding: 2rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #48a9a6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.post-category {
    display: inline-block;
    background: #48a9a6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-post-content {
    padding: 4rem 0;
    background: white;
}

.post-article {
    max-width: 800px;
    line-height: 1.7;
}

.post-intro {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
}

.post-article h2 {
    color: #333;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.post-article h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem 0;
}

.post-article h4 {
    color: #48a9a6;
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

.post-article p {
    margin-bottom: 1.5rem;
    color: #444;
}

.post-article ul, .post-article ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-article li {
    margin-bottom: 0.5rem;
    color: #444;
}

.key-features, .optimization-tips, .directory-examples, .contact-best-practices, .security-checklist, .cta-tips, .trust-elements {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #48a9a6;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.post-cta {
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    background: #48a9a6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #369693;
}

.post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.related-posts a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.related-posts a:hover {
    color: #48a9a6;
}

.cta-widget {
    text-align: center;
    background: #48a9a6;
    color: white;
    padding: 1.5rem;
    border-radius: 6px;
}

.widget-cta {
    display: inline-block;
    background: white;
    color: #48a9a6;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.widget-cta:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.blog-categories-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    color: #48a9a6;
    margin-bottom: 1rem;
}

.post-count {
    display: inline-block;
    background: #48a9a6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.featured-posts-section {
    padding: 4rem 0;
    background: white;
}

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

.blog-post-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #48a9a6;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.blog-post-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-category {
    background: #48a9a6;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.post-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(72, 169, 166, 0.1);
    color: #48a9a6;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.newsletter-section {
    padding: 4rem 0;
    background: #48a9a6;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: white;
    color: #48a9a6;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-group-title {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2a5f5f;
    margin: 0 0 1rem 0;
    text-transform: lowercase;
}

.footer-link {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.footer-link:hover {
    color: #48a9a6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #48a9a6;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #369693;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-right {
        order: -1;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-text {
    font-size: 3rem;
    font-weight: 300;
    color: #2a5f5f;
    font-family: 'Merriweather', serif;
}

.footer-logo-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    margin-top: -0.5rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

.footer-links-section {
    margin: 1rem 0;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.footer-link:hover {
    color: #2a5f5f;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #2a5f5f;
}

.footer-right {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.callback-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.callback-form-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.callback-form-group {
    margin-bottom: 1.2rem;
}

.callback-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.callback-name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.callback-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Merriweather Sans', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.callback-input:focus {
    outline: none;
    border-color: #2a5f5f;
    box-shadow: 0 0 0 2px rgba(42, 95, 95, 0.1);
}

.callback-submit {
    background: #2a5f5f;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.callback-submit:hover {
    background: #1e4544;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(42, 95, 95, 0.3);
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-left {
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo-text {
        font-size: 2.5rem;
    }
    
    .callback-name-fields {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .footer-right {
        padding: 1.5rem;
    }
}

/* Page Hero Section (Shorter template for all other pages) */
.page-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-image: url('../public/images/web-design.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.page-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-top: 100px;
}

.page-hero-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    min-height: 300px;
}

.page-hero-overlay {
    width: 100%;
    height: auto;
    background: rgba(72, 169, 166, 0.75);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    z-index: 3;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.page-hero-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    text-transform: lowercase;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.page-hero-cta {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.page-hero-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Pricing Section for Service Pages */
.pricing-section {
    background: rgba(72, 169, 166, 0.95);
    padding: 80px 0;
    text-align: center;
}

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

.pricing-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 3rem;
    text-transform: lowercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.pricing-card-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #2a5f5f;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.pricing-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Mobile Responsive for Page Hero */
@media (max-width: 768px) {
    .page-hero-section {
        height: 60vh;
        min-height: 400px;
        padding: 2rem 0;
        background-attachment: scroll;
        justify-content: center;
    }
    
    .page-hero-content {
        justify-content: center;
        padding-top: 80px;
    }
    
    .page-hero-card {
        min-height: 250px;
    }
    
    .page-hero-overlay {
        padding: 40px 30px;
        text-align: center;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Performance optimizations */
* {
    transition: all 0.3s ease;
}

/* GPU acceleration for smooth animations */
.hero-section,
.portfolio-item,
.nav-link,
.hero-cta,
.form-submit {
    will-change: transform;
}

/* Optimize font loading */
@font-face {
    font-display: swap;
}

/* Optimize scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Optimize rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    loading: lazy; /* Native lazy loading for better performance */
}

/* Critical above-the-fold images should not be lazy loaded */
.logo-image,
.hero-image img {
    loading: eager;
}

/* Reduce paint on mobile */
@media (max-width: 768px) {
    * {
        transition: none; /* Disable transitions on mobile for performance */
    }

    .hero-section,
    .portfolio-item,
    .nav-link,
    .hero-cta,
    .form-submit {
        will-change: auto;
    }
}

/* Parallax effect for hero video */
.hero-video {
    transform: translateZ(0);
    will-change: transform;
}

/* Terms and Privacy Page Styles */
.terms-content, .privacy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.terms-wrapper, .privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.terms-intro, .privacy-intro {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #1e90ff;
}

.terms-section, .privacy-section {
    margin-bottom: 2.5rem;
}

.terms-section h2, .privacy-section h2 {
    color: #1e90ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', serif;
}

.terms-section h3, .privacy-section h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-family: 'Merriweather', serif;
}

.terms-section ul, .privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li, .privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-contact, .privacy-contact {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.terms-contact h3, .privacy-contact h2 {
    color: #1e90ff;
    margin-bottom: 1rem;
}

.terms-contact a, .privacy-contact a {
    color: #1e90ff;
    text-decoration: none;
}

.terms-contact a:hover, .privacy-contact a:hover {
    text-decoration: underline;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 144, 255, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid rgba(255,255,255,0.2);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: white;
    color: #1e90ff;
}

.cookie-accept:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline:hover {
    background: white;
    color: #1e90ff;
}

/* Pacman Easter Egg */
.pacman-link {
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.pacman-link:hover {
    opacity: 1;
    animation: pacman-chomp 0.5s ease-in-out;
}

@keyframes pacman-chomp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile Cookie Popup and Terms/Privacy */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .terms-wrapper, .privacy-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}
