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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f1e8;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #c8bda7;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c8bda7;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(200, 189, 167, 0.8), rgba(217, 208, 193, 0.8)), url('stageup.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #c8bda7;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

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

/* Services Section */
.services {
    padding: 35px 0;
    background: #fff;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services h2, .about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    opacity: 1 !important;
    visibility: visible !important;
}

.services .section-subtitle, .about .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-grid.four-cols, .features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-top: 1.5rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 150px !important;
    text-align: center !important;
}

.services-grid.four-cols .service-card, .features-grid .feature {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    padding: 1rem !important;
    border: none !important;
    box-shadow: none !important;
}

.services-grid.four-cols .service-icon, .features-grid .feature-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 1.5rem !important;
    color: #5f6663 !important;
    background: none !important;
}

.services-grid.four-cols h3, .features-grid h3 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
    color: #4a4a4a !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services-grid.four-cols p, .features-grid p {
    font-size: 0.85rem !important;
    color: #5f6663 !important;
    line-height: 1.5 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin: 0 !important;
}

.services-grid.four-cols .service-card {
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 150px;
}

.services-grid.four-cols .service-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.services-grid.four-cols .service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: none;
    color: #5f6663;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid.four-cols .service-card:hover .service-icon {
    transform: none;
    animation: none;
}

.services-grid.four-cols h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.services-grid.four-cols p {
    font-size: 0.85rem;
    color: #5f6663;
}

/* Simplified Contact */
.contact-simple {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-item-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item-simple a {
    text-decoration: none;
    color: #5f6663;
    font-size: 0.9rem;
}

.contact-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-icon-small svg {
    display: block;
}

/* Footer Branding — see "New Minimalist Branding Styling" section below */

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.service-card h3, .service-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-link {
    color: #c8bda7;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d9d0c1;
}

/* About Section */
.about {
    padding: 35px 0;
    background: #fff;
    color: #333;
    position: relative;
    display: block !important;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: transparent;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #5f6663;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.feature p {
    color: #5f6663;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Portfolio Section */
.portfolio {
    padding: 35px 0;
    background: #fff;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.portfolio-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Portfolio Filters */
.portfolio-filters {
    padding: 2rem 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #c8bda7;
    background: transparent;
    color: #c8bda7;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #c8bda7;
    color: #fff;
}

.filter-btn.active {
    background: #c8bda7;
    color: #fff;
    border-color: #c8bda7;
}

/* Portfolio Grid Improvements */
.portfolio-image {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    padding: 0.8rem 1.5rem;
    background: #c8bda7;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.view-project:hover {
    transform: scale(1.05);
    background: #d9d0c1;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.portfolio-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.portfolio-results {
    font-size: 0.85rem;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 35px 0;
    background: #f5f1e8;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-details a {
    color: #c8bda7;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: #d9d0c1;
}

/* New Minimalist Branding Styling */
.footer-logo-large {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid #f0f0f0;
}

.footer-brand-img {
    width: 100px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-main {
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.3rem;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8bda7;
}

.submit-btn {
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

/* FAQ Section */
.faq {
    padding: 35px 0;
    background: #f5f1e8;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    opacity: 1 !important;
    visibility: visible !important;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    height: auto !important;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #c8bda7;
    font-weight: 600;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: block !important;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    display: block !important;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(200, 189, 167, 0.9), rgba(217, 208, 193, 0.9)), url('stageup.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    position: relative;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-banner .cta-button {
    background: white;
    color: #c8bda7;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-banner .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #bdc3c7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #c8bda7;
    padding-left: 5px;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(200, 189, 167, 0.8), rgba(217, 208, 193, 0.8)), url('stageup.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail */
.services-detail {
    padding: 50px 0;
    background: #fff;
}

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

.service-detail-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-header {
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.service-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.8rem 0;
}


.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.2rem 0 0.5rem;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-content li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8bda7;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    padding: 50px 0;
    background: #f5f1e8;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.additional-service {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-3px);
}

.additional-service h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.additional-service p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.85rem;
    flex-grow: 1;
}

.additional-service ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.additional-service li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.additional-service li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8bda7;
    font-weight: bold;
}


/* Process */
.process {
    padding: 50px 0;
    background: #fff;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(rgba(200, 189, 167, 0.9), rgba(217, 208, 193, 0.9)), url('stageup.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

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

.cta-button.primary {
    background: white;
    color: #c8bda7;
}

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(200, 189, 167, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(200, 189, 167, 0.6);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Wow Effects */
.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 189, 167, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200, 189, 167, 0.2);
    border-color: #c8bda7;
}

.service-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.2rem;
color: white;
transition: all 0.3s ease;
position: relative;
}

.service-card:hover .service-icon {
transform: rotate(360deg) scale(1.1);
animation: glow 2s infinite;
}

.service-card h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.8rem;
color: #2c3e50;
}

.service-card p {
color: #666;
margin-bottom: 1.2rem;
line-height: 1.5;
font-size: 0.95rem;
}

.cta-button {
display: inline-block;
background: #fff;
color: #c8bda7;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
animation: fadeInUp 1s ease 0.4s;
animation-fill-mode: both;
position: relative;
overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #c8bda7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 189, 167, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.feature:hover::after {
    animation: shimmer 0.6s ease;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.feature:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(200, 189, 167, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(200, 189, 167, 0.4);
}

.portfolio-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 189, 167, 0.1), rgba(217, 208, 193, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200, 189, 167, 0.2);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(200, 189, 167, 0.3);
}

/* Scroll animations override to ensure visibility */
.scroll-animate,
.scroll-animate-left,
.scroll-animate-right {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
}

.services-grid, .features-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card, .feature {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Tjänster Page */
.tjanster-hero {
    padding: 80px 0 35px;
    background: #f5f1e8;
    text-align: center;
}

.tjanster-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: #5f6663;
    margin-bottom: 0;
}

.tjanster-divider {
    width: 80px;
    height: 1px;
    background: #c8bda7;
    margin: 1.5rem auto;
}

.tjanster-intro {
    font-size: 0.95rem;
    color: #5f6663;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.tjanster-cards {
    padding: 50px 0;
    background: #fff;
}

.tjanster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.tjanster-card {
    text-align: left;
    background: #f5f1e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tjanster-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #d9d0c1;
}

.tjanster-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tjanster-card-body {
    padding: 1.5rem;
}

.tjanster-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.tjanster-card p {
    font-size: 0.85rem;
    color: #5f6663;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 500px;
    margin: 2.5rem auto 0;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d9d0c1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #2c3e50;
    background: #f5f1e8;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8bda7;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success p {
    color: #5f6663;
    font-size: 1.1rem;
}

/* Team / Om mig */
.team-grid {
    display: flex;
    justify-content: center;
}

.team-member {
    max-width: 300px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #c8bda7;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: #fff;
    transform: scale(1.15);
}

/* Google Map */
.google-map {
    margin: 2.5rem auto 0;
    max-width: 600px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Scroll Fade-In Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects — Service Cards */
.tjanster-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tjanster-card-img img {
    transition: transform 0.4s ease;
}

.tjanster-card:hover .tjanster-card-img img {
    transform: scale(1.05);
}

/* Hover Effects — Portfolio Items */
.portfolio-image {
    transition: box-shadow 0.3s ease;
}

.portfolio-image:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portfolio-image img {
    transition: transform 0.4s ease;
}

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

/* GDPR Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.cookie-visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-accept {
    background: #c8bda7;
    color: #2c3e50;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: #d9d0c1;
}

.cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cookie-decline:hover {
    color: #fff;
    border-color: #888;
}

/* Certification Section */
.certification-section {
    padding: 35px 0;
    background: #f5f1e8;
    text-align: center;
}

.certification-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.certification-image {
    max-width: 250px;
    margin: 0 auto;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Nav CTA Button */
.nav-cta {
    background: #c8bda7;
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #5f6663;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Stats Section */
.stats-section {
    padding: 35px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c8bda7;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 600;
    color: #c8bda7;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #5f6663;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 50px 0;
    background: #f5f1e8;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    flex: 1;
    max-width: 260px;
    padding: 0 1.5rem;
    position: relative;
}

.how-step-number {
    width: 36px;
    height: 36px;
    background: #c8bda7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 1rem;
}

.how-step-icon {
    margin-bottom: 1rem;
}

.how-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.how-step p {
    font-size: 0.9rem;
    color: #5f6663;
    line-height: 1.6;
}

.how-step-connector {
    display: flex;
    align-items: center;
    padding-top: 2.5rem;
    flex-shrink: 0;
}

/* Before & After Section */
.before-after {
    padding: 50px 0;
    background: #fff;
}

.before-after h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 0;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: #a8a29e;
}

.ba-placeholder-after {
    background: #c8bda7;
}

.ba-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-handle::before {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: #5f6663;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.ba-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #5f6663;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background: #f5f1e8;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.testimonial-stars {
    color: #c8bda7;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5f6663;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #c8bda7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #999;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: 2px solid #c8bda7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c8bda7;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #c8bda7;
    color: #fff;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d0c1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dot.active {
    background: #c8bda7;
}

/* Instagram Section */
.instagram-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.instagram-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.instagram-handle {
    color: #c8bda7;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8bda7 0%, #d9d0c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-follow-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #c8bda7;
    color: #c8bda7;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-follow-btn:hover {
    background: #c8bda7;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .tjanster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .how-step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }
    
    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tjanster-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tjanster-title {
        font-size: 2.2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .about {
        background-attachment: scroll;
    }
    
    .page-hero {
        background-attachment: scroll;
    }
    
    .cta-section {
        background-attachment: scroll;
    }
    
    .cta-banner {
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services h2,
    .about h2,
    .portfolio h2,
    .contact h2,
    .services-detail h2,
    .additional-services h2,
    .process h2,
    .faq h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .features-grid,
    .portfolio-grid,
    .services-detail-grid,
    .additional-services-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-banner {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-simple {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-menu li {
        padding: 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 70px 0 40px;
        background-attachment: scroll;
    }
    
    .about {
        padding: 35px 0;
        background-attachment: scroll;
    }
    
    .page-hero {
        padding: 70px 0 30px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .portfolio,
    .contact,
    .services-detail,
    .additional-services,
    .process,
    .faq,
    .cta-section {
        padding: 35px 0;
    }
    
    .service-icon,
    .feature-icon,
    .step-number {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg,
    .feature-icon svg,
    .step-number {
        width: 32px;
        height: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid.four-cols {
        grid-template-columns: 1fr;
    }
    
    .contact-simple {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-banner {
        padding: 1.5rem;
    }
    
    .cta-banner h2 {
        font-size: 1.3rem;
    }
}
