/*
Theme Name: FarahMedia
Description: Een professioneel WordPress thema voor FarahMedia - Personal Branding & Social Media Marketing Specialist
Version: 1.0
Author: Xaviero Kajafas, Nick Aldewereld / EASEO.nl
Author URI: https://github.com/MrDurex2020, https://github.com/NickAldewereld
Text Domain: farahmedia
License: All rights reserved
*/

html {
    overflow-x: hidden;
}

body {
    font-family: "ABeeZee", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Header and Navigation Bar */
.main-header {
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active, .nav-links a:hover {
    color: #c5a449;
}

.nav-links .arrow {
    font-size: 10px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    list-style: none;
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #c5a449;
}

/* Call to Action Button */
.cta-button {
    background-color: #c5a449;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(197, 164, 73, 0.3);
}

.cta-button:hover {
    background-color: #b3923c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 164, 73, 0.4);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    padding: 100px 50px;
    background-color: #f8f9fe;
    overflow: hidden;
}

.hero-section.alt-hero {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: transparent;
    background-image: url('../FarahMedia/img/hero-1-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section.alt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 249, 254, 0.85);
    z-index: 1;
}

.hero-section.alt-hero .hero-text-container,
.hero-section.alt-hero .hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-text-container {
    flex-basis: 45%;
    padding-right: 30px; /* Space between text and image container */
}

.hero-content {
    max-width: 500px;
}

.hero-content h1, 
.hero-content p, 
.google-review, 
.hero-buttons {
    opacity: 0; /* Start hidden for animation */
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content h1 {
    font-size: 52px;
    color: #fefefe;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: none;
    opacity: 1;
    overflow: hidden;
}

.hero-content h1 span {
    display: inline-block;
    animation: revealText 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: 18px;
    color: #fefefe;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
    margin-bottom: 30px;
    animation-delay: 0.8s;
}

.google-review {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    animation-delay: 1.0s;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -15px;
}

.review-text {
    margin-left: 25px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.review-text img {
    height: 20px;
    margin-right: 10px;
    transform: translateY(0);
}

.hero-buttons {
    animation-delay: 1.2s;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    display: inline-block;
}

.btn-primary {
    background-color: #6e48ff;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #ff6f61;
    border: 2px solid #ff6f61;
}

.hero-image-container {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-woman-img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    z-index: 1;
}

.hero-image-container .card {
    position: absolute;
    padding: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #333;
}

.conversion-rates-card {
    top: 50px;
    right: 0;
    width: 200px;
    animation: bounce 3s infinite ease-in-out;
    animation-delay: 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transactions-card {
    bottom: 50px;
    left: 0;
    width: 280px;
    animation: bounce 3s infinite ease-in-out;
    animation-delay: 0.4s;
}

.conversion-rates-card p {
    margin: 3px 0;
    color: #3a3a3a;
    font-size: 12px;
}

.conversion-rates-card p:first-child {
    font-weight: bold;
    font-size: 14px;
}

.conversion-rates-card strong {
    color: #0d2c54;
}

.conversion-rates-card .progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(224, 224, 224, 0.5);
    border-radius: 4px;
    margin: 8px 0;
    overflow: hidden;
    position: relative;
}

.conversion-rates-card .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 85%;
    background-color: #6e48ff;
    border-radius: 4px;
}

.conversion-rates-card .percentage {
    font-weight: bold;
    font-size: 18px;
    color: #0d2c54;
    position: relative;
    padding-left: 12px;
    margin-top: 4px !important;
}

.conversion-rates-card .percentage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background-color: #ff6f61;
    border-radius: 2px;
}

.transactions-card p {
    margin: 5px 0;
    color: #3a3a3a;
    font-size: 14px;
}

.transactions-card .chart-placeholder {
    height: 40px;
    margin: 10px 0;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none'/%3e%3cpath d='M0 30 C40 5, 60 5, 100 30 S140 55, 180 30' stroke='%236e48ff' stroke-width='2' fill='none'/%3e%3c/svg%3e");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.transactions-card p:last-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transactions-card strong {
    font-size: 24px;
    font-weight: bold;
    color: #0d2c54;
}

.transactions-card span {
    font-size: 14px;
    font-weight: normal;
    color: #555;
}

.paper-plane-img {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 120px;
    z-index: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6f61;
    color: white;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    z-index: 1000;
}

/* Services Section */
.services-section {
    padding: 80px 50px;
    background-color: #f8f9fe;
    text-align: center;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Animation classes for scroll trigger */
.services-section .section-intro,
.services-section .section-title,
.services-section .section-description,
.services-section .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-section.is-visible .section-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.services-section.is-visible .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.services-section.is-visible .section-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.services-section.is-visible .service-card {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for service cards */
.services-section.is-visible .service-card:nth-child(1) { transition-delay: 0.4s; }
.services-section.is-visible .service-card:nth-child(2) { transition-delay: 0.5s; }
.services-section.is-visible .service-card:nth-child(3) { transition-delay: 0.6s; }
.services-section.is-visible .service-card:nth-child(4) { transition-delay: 0.7s; }

.services-section .section-intro {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.services-section .section-title {
    color: #0d2c54;
    font-size: 40px;
    margin-bottom: 20px;
}

.services-section .section-description {
    color: #555;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper i {
    font-size: 40px;
}

.service-card h3 {
    color: #0d2c54;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Icon Colors — monochrome, editorial feel */
.icon-yellow,
.icon-red,
.icon-green,
.icon-purple {
    background-color: #0f1c2e;
}
.icon-yellow i,
.icon-red i,
.icon-green i,
.icon-purple i {
    color: #ffffff;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text reveal animation */
@keyframes revealText {
    from {
        transform: translateY(110%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Styles */

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #0d2c54;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px; /* Below header */
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .cta-button {
        display: none; /* Hide on mobile nav, or adjust as needed */
    }

    .hero-section {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
    }

    .hero-section.alt-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-text-container {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-container {
        width: 100%;
        margin-top: 40px;
    }
    
    .hero-woman-img {
        width: 400px;
        height: 400px;
    }

    .conversion-rates-card {
        top: 0;
        right: 10px;
    }

    .transactions-card {
        left: 10px;
        bottom: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-woman-img {
        width: 300px;
        height: 300px;
    }

    .hero-image-container .card {
        position: relative;
        width: 80%;
        margin: 20px auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    
    .paper-plane-img {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section .section-title {
        font-size: 32px;
    }

    .content-section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .content-section .content-image,
    .content-section .content-text {
        width: 100%;
    }

    /* Reverse order for about section on mobile */
    .about-section {
        flex-direction: column-reverse;
    }
    
    .content-section h2 {
        font-size: 30px;
    }

    .services-section .section-title {
        font-size: 32px;
    }
}

/* Content Sections (About & Contact Promo) */
.content-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 50px;
    background-color: #fff;
    opacity: 0; /* For animation */
    transform: translateY(30px); /* For animation */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* For animation */
}

.content-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-promo-section {
    background-color: #f8f9fe;
}

.content-section .content-image,
.content-section .content-text {
    width: 50%;
}

.content-section .content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-section h2 {
    font-size: 36px;
    color: #0d2c54;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #c5a449; /* Gold color from navbar */
}

.content-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 50px;
    background-color: #fdf6e9; /* Light beige background */
    text-align: center;
}

.testimonial-slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-wrapper {
    max-width: 800px;
    width: 100%;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.testimonial-card::before { /* Quote graphic */
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 137, 137, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-header .stars {
    color: #f5b700;
    font-size: 20px;
}

.testimonial-header .linkedin-logo {
    height: 24px;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
    text-align: left;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info strong {
    color: #0d2c54;
    font-size: 16px;
    display: block;
}

.author-info span {
    color: #555;
    font-size: 14px;
}

.swiper-pagination-bullet {
    background: #c5a449;
    width: 10px;
    height: 10px;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    /* ... existing styles ... */
    .testimonial-wrapper {
        max-width: 90%;
    }
}
@media (max-width: 768px) {
    /* ... existing styles ... */
    .testimonial-wrapper {
        max-width: 100%;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #2c2c3e; /* Dark blue/purple background */
    color: #a9a9c4; /* Light text color */
    padding-top: 80px;
    position: relative;
    z-index: 10;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 50px 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #c5a449; /* Gold hover color */
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 15px;
}

.links-column ul a {
    color: #a9a9c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-column ul a:hover {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 20px;
    color: #c5a449; /* Gold icon color */
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #4a4a6a;
    background-color: transparent;
    color: #fff;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: #6e48ff; /* Purple button from hero */
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #5a38d1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    border-top: 1px solid #4a4a6a;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #a9a9c4;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    /* ... existing styles ... */
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* ... existing styles ... */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-column .social-icons {
        margin-bottom: 30px;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 15px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* Diensten Page Styles */
.services-page {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.page-title-section {
    padding: 60px 50px;
    background-color: #f8f9fe;
    text-align: center;
}

.page-title-section h1 {
    font-size: 42px;
    color: #0d2c54;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.page-title-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c5a449;
}

.service-display-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    padding: 100px 50px;
    overflow: hidden; /* Hide overflowing animation parts */
    gap: 20px;
}

.service-display-section:nth-child(odd) {
    background-color: #f8f9fe;
}

.service-display-section.reverse {
    /* No longer need flex-direction */
}

.service-display-image {
    grid-column: 1 / span 8;
    grid-row: 1 / 2;
    z-index: 1;
    width: 100%; /* Take full width of grid columns */
}

.service-display-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-display-text-box {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 40px;
    grid-column: 7 / -1;
    grid-row: 1 / 2;
    border-left: 5px solid #c5a449;
    z-index: 2;
    width: auto; /* Let grid handle the width */
    position: static; /* Remove relative positioning */
}

.service-display-section:not(.reverse) .service-display-text-box {
    /* left: -8%; No longer needed */
}

.service-display-section.reverse .service-display-image {
    grid-column: 5 / -1;
}

.service-display-section.reverse .service-display-text-box {
    /* right: -8%; No longer needed */
    grid-column: 1 / span 7;
    grid-row: 1 / 2;
}

.service-display-text-box h3 {
    font-size: 24px;
    color: #c5a449; /* Gold title */
    margin-bottom: 20px;
    line-height: 1.4;
}

.service-display-text-box p {
    color: #555;
    margin-bottom: 25px;
}

.service-display-text-box .read-more {
    color: #0d2c54;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-display-text-box .read-more:hover {
    border-color: #c5a449;
}

.service-display-text-box .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-display-text-box .read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    /* ... existing styles ... */
    .service-display-section, .service-display-section.reverse {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .service-display-image, .service-display-text-box {
        width: 100%;
        grid-column: auto; /* Reset grid properties */
        grid-row: auto;
    }

    .service-display-section:not(.reverse) .service-display-text-box,
    .service-display-section.reverse .service-display-text-box {
        left: 0;
        right: 0;
        border-left: 5px solid #c5a449; /* Ensure border is consistent */
        border-top: none;
        position: static;
    }
}

@media (max-width: 768px) {
    /* ... existing styles ... */
    .page-title-section h1 {
        font-size: 36px;
    }

    .service-display-text-box h3 {
        font-size: 22px;
    }
}

.animate-on-scroll.fade-in-up {
    transform: translateY(50px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.hidden {
    display: none;
}

/* Service Detail Page Styles - New Design */
.detail-hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-image: url('../img/iStock-1398179485-600x450.jpg');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.detail-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 44, 84, 0.6);
}

.detail-hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.detail-hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.detail-hero-section .underline {
    display: block;
    width: 120px;
    height: 4px;
    background-color: #c5a449;
    margin: 0 auto;
}

.page-intro-section {
    padding: 100px 50px;
    background-color: #fff;
}

.page-intro-section .content-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-text {
    flex: 1;
    font-size: 17px;
    line-height: 1.8;
}

.intro-image {
    flex: 0 0 300px;
}

.intro-image img {
    width: 100%;
    border-radius: 50%;
}

.strategy-section {
    padding: 100px 50px;
    background-color: #f8f9fe;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #0d2c54;
    margin-bottom: 15px;
}

.section-subtitle-text {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.strategy-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    border-top: 4px solid #c5a449;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.strategy-icon {
    font-size: 40px;
    color: #c5a449;
    margin-bottom: 20px;
}

.strategy-card h3 {
    font-size: 22px;
    color: #0d2c54;
    margin-bottom: 15px;
}

.experience-section {
    padding: 80px 50px;
    background-color: #0d2c54;
    color: #fff;
    text-align: center;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #c5a449;
}

.experience-content p {
    color: #e0e7ff;
    line-height: 1.7;
    margin-bottom: 20px;
}

.experience-content .conclusion-text {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #e8ecff 100%);
    padding: 100px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0d2c54;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    border: none;
    cursor: pointer;
}

.cta-buttons .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.5s;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0d2c54, #1a4a7a);
    color: white;
    box-shadow: 0 10px 30px rgba(13, 44, 84, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a4a7a, #0d2c54);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 44, 84, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #c5a449, #d4b55a);
    color: white;
    box-shadow: 0 10px 30px rgba(197, 164, 73, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d4b55a, #c5a449);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 164, 73, 0.4);
}

/* Responsive design voor CTA sectie */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 30px;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .page-intro-section .content-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .detail-hero-section h1 {
        font-size: 38px;
    }
    .section-title {
        font-size: 30px;
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 20px;
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #e8ecff 100%);
    padding: 120px 50px 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.contact-stats .stat-item {
    text-align: center;
}

.contact-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c5a449;
    margin-bottom: 5px;
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.contact-hero-image {
    text-align: center;
}

.contact-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 50px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 164, 73, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d2c54;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: block;
    color: #c5a449;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0d2c54;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8f9fe 0%, #e8ecff 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d2c54;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #0d2c54;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c5a449;
    box-shadow: 0 0 0 3px rgba(197, 164, 73, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #c5a449;
    border-color: #c5a449;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: #c5a449;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(13, 44, 84, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 50px;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid #e1e5e9;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fe;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e8ecff;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d2c54;
    margin: 0;
}

.faq-question i {
    color: #c5a449;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-hero-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #e8ecff 100%);
    padding: 100px 50px 70px;
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.blog-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.blog-stats .stat-item {
    text-align: center;
}

.blog-stats .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: #c5a449;
    margin-bottom: 4px;
}

.blog-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.blog-hero-image {
    text-align: center;
}

.blog-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Featured Posts Section */
.featured-posts-section {
    padding: 80px 50px;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0d2c54;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.featured-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.main-featured {
    grid-row: span 2;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c5a449, #d4b55a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category {
    background: rgba(197, 164, 73, 0.1);
    color: #c5a449;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    color: #999;
    font-size: 0.9rem;
}

.featured-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d2c54;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    color: #666;
    font-size: 0.9rem;
}

.read-more {
    color: #c5a449;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0d2c54;
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-sidebar .featured-card {
    flex: 1;
}

.featured-sidebar .featured-image img {
    height: 200px;
}

.featured-sidebar .featured-content h3 {
    font-size: 1.2rem;
}

/* Categories Section */
.categories-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #f8f9fe 0%, #e8ecff 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(197, 164, 73, 0.12);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0d2c54;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.category-link {
    color: #c5a449;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #0d2c54;
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 80px 50px;
    background: white;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(197, 164, 73, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-meta .date {
    color: #999;
}

.read-time {
    color: #c5a449;
    font-weight: 600;
}

.post-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d2c54;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.post-footer .author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-footer .author img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.post-footer .author span {
    color: #666;
    font-size: 0.85rem;
}

.post-footer .read-more {
    color: #c5a449;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.post-footer .read-more:hover {
    color: #0d2c54;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 44, 84, 0.15);
}

.load-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(13, 44, 84, 0.25);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #0d2c54, #1a4a7a);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #c5a449;
}

.newsletter-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e7ff;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit i {
    color: #c5a449;
    font-size: 1.2rem;
}

.benefit span {
    color: #e0e7ff;
    font-size: 1rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: #c5a449;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form select option {
    background: #0d2c54;
    color: white;
}

.newsletter-btn {
    width: 100%;
    background: linear-gradient(135deg, #c5a449, #d4b55a);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(197, 164, 73, 0.25);
}

.newsletter-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.newsletter-note a {
    color: #c5a449;
    text-decoration: none;
}

.newsletter-note a:hover {
    text-decoration: underline;
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
    .blog-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .blog-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .blog-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-featured {
        grid-row: auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
} 

/* Portfolio Page Styles */
.portfolio-hero-section {
    background: linear-gradient(135deg, #f8f9fe 0%, #e8ecff 100%);
    padding: 100px 50px 70px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.portfolio-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.portfolio-stats .stat-item {
    text-align: center;
}

.portfolio-stats .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: #c5a449;
    margin-bottom: 4px;
}

.portfolio-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.portfolio-hero-image {
    text-align: center;
}

.portfolio-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Portfolio Filter Section */
.portfolio-filter-section {
    padding: 40px 50px;
    background: white;
    border-bottom: 1px solid #e1e5e9;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #666;
    border: 2px solid #e1e5e9;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #0d2c54, #c5a449);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 44, 84, 0.2);
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 80px 50px;
    background: #f8f9fe;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 44, 84, 0.9), rgba(197, 164, 73, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.view-project-btn {
    background: white;
    color: #0d2c54;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background: #c5a449;
    color: white;
    transform: translateY(-2px);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0d2c54;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.portfolio-results {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c5a449;
    margin-bottom: 4px;
}

.result-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Portfolio Testimonials Section */
.portfolio-testimonials-section {
    padding: 80px 50px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8f9fe;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #c5a449;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #0d2c54;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    background: linear-gradient(135deg, #0d2c54, #1a4a7a);
    padding: 80px 50px;
    text-align: center;
    color: white;
}

.portfolio-cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c5a449;
}

.portfolio-cta-section .cta-content p {
    font-size: 1.1rem;
    color: #e0e7ff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-cta-section .btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.portfolio-cta-section .btn-primary {
    background: linear-gradient(135deg, #c5a449, #d4b55a);
    color: white;
    box-shadow: 0 8px 20px rgba(197, 164, 73, 0.3);
}

.portfolio-cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 164, 73, 0.4);
}

.portfolio-cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.portfolio-cta-section .btn-secondary:hover {
    background: white;
    color: #0d2c54;
    transform: translateY(-2px);
}

/* Responsive Design for Portfolio Page */
@media (max-width: 768px) {
    .portfolio-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .portfolio-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-section,
    .portfolio-filter-section,
    .portfolio-gallery-section,
    .portfolio-testimonials-section,
    .portfolio-cta-section {
        padding: 60px 30px;
    }
    
    .portfolio-hero-text h1 {
        font-size: 2rem;
    }
    
    .portfolio-stats {
        gap: 20px;
    }
    
    .portfolio-stats .stat-number {
        font-size: 1.8rem;
    }
} 

/* Logo centered prominence */
.custom-logo-link img,
.custom-logo {
    height: 90px;
    width: auto;
}

/* Footer 3-column layout (no newsletter) */
.footer-main {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 768px) {
    .custom-logo-link img,
    .custom-logo,
    .logo img {
        height: 60px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-logo img {
        height: 60px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo img,
    .custom-logo-link img {
        height: 75px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   TYPOGRAPHY & DESIGN UPGRADE
   ============================================ */

/* --- Font Override: Inter (body) + Playfair Display (headings) --- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 400;
    line-height: 1.7;
    color: #2d2d2d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.page-title,
.post-title,
.section-title,
.hero-content h1 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
    font-weight: 600;
    line-height: 1.25;
    color: #0d2c54;
    letter-spacing: -0.02em;
}

/* --- Subtle Background Pattern (geometric diamonds) --- */
.site-main article .container,
.page-content,
.post-content {
    position: relative;
}

.site-main article .container::before,
.page-content::before,
.post-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(45deg, #0d2c54 25%, transparent 25%),
        linear-gradient(-45deg, #0d2c54 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #0d2c54 75%),
        linear-gradient(-45deg, transparent 75%, #0d2c54 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

.site-main article .container > *,
.page-content > *,
.post-content > * {
    position: relative;
    z-index: 1;
}

/* --- Page Content Styling --- */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(197, 164, 73, 0.2);
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-excerpt {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-size: 1.08rem;
    line-height: 1.85;
}

.page-content h2 {
    font-size: 1.9rem;
    margin-top: 50px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(197, 164, 73, 0.3);
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #1a3a5c;
}

.page-content p {
    margin-bottom: 1.4em;
    color: #333;
}

.page-content a {
    color: #0d2c54;
    text-decoration: underline;
    text-decoration-color: rgba(197, 164, 73, 0.5);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.page-content a:hover {
    color: #c5a449;
    text-decoration-color: #c5a449;
}

.page-content ul,
.page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.4em;
}

.page-content li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

.page-content strong {
    font-weight: 600;
    color: #0d2c54;
}

.page-content blockquote {
    border-left: 4px solid #c5a449;
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(197, 164, 73, 0.05);
    font-style: italic;
    font-size: 1.12rem;
    color: #444;
    border-radius: 0 8px 8px 0;
}

/* --- Blog Post Content Styling --- */
.post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-size: 1.08rem;
    line-height: 1.85;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-top: 45px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(197, 164, 73, 0.3);
}

.post-content h3 {
    font-size: 1.35rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a3a5c;
}

.post-content p {
    margin-bottom: 1.4em;
    color: #333;
}

.post-content a {
    color: #0d2c54;
    text-decoration: underline;
    text-decoration-color: rgba(197, 164, 73, 0.5);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.post-content a:hover {
    color: #c5a449;
    text-decoration-color: #c5a449;
}

.post-content ul,
.post-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.4em;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content strong {
    font-weight: 600;
    color: #0d2c54;
}

/* --- Post Header --- */
.post-header {
    text-align: center;
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(197, 164, 73, 0.2);
    margin-bottom: 45px;
}

.post-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
}

.post-meta i {
    margin-right: 4px;
    color: #c5a449;
}

.post-excerpt {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
    font-style: italic;
}

/* --- Author Bio in Posts --- */
.post-author-bio {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    margin-top: 50px;
    background: linear-gradient(135deg, #f8f9fe 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 73, 0.15);
}

.post-author-bio .author-avatar img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.post-author-bio .author-info h4 {
    margin: 0 0 5px;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem;
}

.post-author-bio .author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* --- Post Navigation --- */
.post-navigation {
    padding: 30px 0;
    border-top: 1px solid rgba(197, 164, 73, 0.15);
    border-bottom: 1px solid rgba(197, 164, 73, 0.15);
    margin-top: 40px;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    gap: 20px;
}

.post-navigation a {
    color: #0d2c54;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.post-navigation a:hover {
    color: #c5a449;
}

/* --- Responsive Typography --- */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .page-content,
    .post-content {
        font-size: 1rem;
        padding: 0 15px 50px;
    }
    
    .page-content h2,
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3,
    .post-content h3 {
        font-size: 1.2rem;
    }
    
    .page-header,
    .post-header {
        padding: 40px 15px 30px;
    }
    
    .post-meta {
        gap: 12px;
        font-size: 0.85rem;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .page-title {
        font-size: 2.4rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .page-content,
    .post-content {
        max-width: 680px;
    }
}

/* ============================================
   HERO TEXT READABILITY FIX
   ============================================ */

.hero-content h1,
.hero-content h1 span {
    color: #0d2c54 !important;
    text-shadow: none !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    color: #444 !important;
    text-shadow: none !important;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-content .google-review .review-text {
    color: #555;
}

/* Hero buttons */
.hero-buttons .btn-primary {
    background-color: #0d2c54;
    color: #fff;
    border: 2px solid #0d2c54;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: #c5a449;
    border-color: #c5a449;
    color: #fff;
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: #0d2c54;
    border: 2px solid #0d2c54;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background-color: #0d2c54;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-content h1,
    .hero-content h1 span {
        font-size: 32px !important;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

/* ============================================
   MOBILE IMAGES — LARGER + BETTER PROPORTIONS
   ============================================ */

@media (max-width: 768px) {
    /* Hero photo bigger on mobile */
    .hero-woman-img {
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
        margin: 0 auto;
        display: block;
    }
    
    /* About section + contact promo images full width */
    .content-section .content-image {
        width: 100% !important;
    }
    
    .content-section .content-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px;
    }
    
    /* Contact page hero image */
    .contact-hero-image {
        width: 100% !important;
    }
    
    .contact-hero-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px;
        min-height: 250px;
        object-fit: cover;
    }
    
    /* Testimonial avatars */
    .testimonial-author .author-avatar,
    .author-avatar {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Google review avatars in hero */
    .google-review .avatars img {
        width: 36px !important;
        height: 36px !important;
    }
    
    /* Footer contact links clickable */
    .footer-column.contact-column a {
        color: #ccc;
        text-decoration: none;
    }
    
    .footer-column.contact-column a:hover {
        color: #c5a449;
    }
}

/* Tablet images */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-woman-img {
        width: 100% !important;
        max-width: 450px !important;
        height: auto !important;
    }
    
    .content-section .content-image img {
        width: 100%;
        height: auto;
    }
}

/* Footer contact links styling (all sizes) */
.footer-column.contact-column a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column.contact-column a:hover {
    color: #c5a449;
}

/* ============================================
   MOBILE DROPDOWN FIX
   ============================================ */

@media (max-width: 1100px) {
    /* Dropdown on mobile: static position, no hover */
    .dropdown-content {
        position: static !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        min-width: unset !important;
        padding: 0 !important;
        background-color: #f8f9fe !important;
        border-top: 1px solid #eee;
        margin-top: 5px;
    }
    
    .dropdown-content li {
        margin: 0 !important;
    }
    
    .dropdown-content a {
        padding: 10px 20px !important;
        font-size: 15px !important;
        text-align: center;
    }
    
    /* Don't rely on hover for mobile */
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    /* Only show when JS adds .open class */
    .dropdown.open .dropdown-content {
        display: block !important;
    }
    
    /* Arrow rotation when open */
    .dropdown.open .arrow {
        transform: rotate(180deg);
    }
    
    /* Make the dropdown trigger more tappable */
    .dropdown > a {
        padding: 12px 0;
        display: inline-block;
    }
}

/* ============================================
   SPARKLE & SHINE EFFECTS — PREMIUM DESIGN
   ============================================ */

/* --- Golden shimmer line on headings --- */
.page-content h2::after,
.post-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, #c5a449, #e8d48b, #c5a449);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 2px;
    border-bottom: none;
}

.page-content h2,
.post-content h2 {
    border-bottom: none !important;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* --- Subtle glow on CTA buttons --- */
.btn-primary,
.cta-button,
.hero-buttons .btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.cta-button::after,
.hero-buttons .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: none;
    animation: buttonShine 4s ease-in-out infinite;
}

@keyframes buttonShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* --- Floating sparkle dots on hero --- */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(197, 164, 73, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 15%, rgba(197, 164, 73, 0.3) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 30% 70%, rgba(197, 164, 73, 0.35) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 80%, rgba(197, 164, 73, 0.25) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 50% 40%, rgba(197, 164, 73, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 60%, rgba(197, 164, 73, 0.4) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(197, 164, 73, 0.2) 50%, transparent 50%);
    animation: sparkleFloat 6s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-section {
    position: relative;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

@keyframes sparkleFloat {
    0% { opacity: 0.5; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(-8px); }
}

/* --- Elegant card lift & glow on service cards --- */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(197, 164, 73, 0.4) 50%, transparent 60%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderShimmer 4s linear infinite;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(13, 44, 84, 0.1), 0 0 30px rgba(197, 164, 73, 0.08) !important;
}

@keyframes borderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Gold accent line on section intros --- */
.section-intro {
    position: relative;
    display: inline-block;
}

.section-intro::before {
    content: '✦';
    margin-right: 8px;
    color: #c5a449;
    font-size: 0.8em;
    opacity: 0.7;
}

.section-intro::after {
    content: '✦';
    margin-left: 8px;
    color: #c5a449;
    font-size: 0.8em;
    opacity: 0.7;
}

/* --- Testimonial cards subtle shine --- */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(197, 164, 73, 0.06),
        transparent
    );
    animation: cardShine 5s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* --- Glowing gold dot on active nav --- */
.nav-links a:hover::after,
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #c5a449;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(197, 164, 73, 0.6);
}

/* --- Footer golden separator --- */
.footer-bottom {
    border-top: 1px solid rgba(197, 164, 73, 0.3) !important;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30%;
    right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c5a449, transparent);
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% 100%;
}

/* --- Smooth page load fade-in --- */
.site-main {
    animation: pageIn 0.6s ease-out;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Scroll-to-top button glow --- */
.scroll-to-top.show {
    box-shadow: 0 4px 15px rgba(197, 164, 73, 0.3);
    background: linear-gradient(135deg, #0d2c54, #1a3a5c) !important;
    border: 1px solid rgba(197, 164, 73, 0.3);
}

.scroll-to-top.show:hover {
    box-shadow: 0 6px 20px rgba(197, 164, 73, 0.5);
    transform: translateY(-3px);
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Pulse ring effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Don't overlap with scroll-to-top */
.scroll-to-top {
    bottom: 100px !important;
    right: 25px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .scroll-to-top {
        bottom: 85px !important;
        right: 20px;
    }
}

/* WhatsApp icon in CTA buttons */
.btn-primary svg,
.cta-button svg {
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    .whatsapp-float::before {
        animation: none;
        display: none;
    }
}

/* ============================================
   FOOTER REDESIGN — LIGHT BACKGROUND
   ============================================ */

.site-footer {
    background-color: #f4f1ec !important;
    color: #444 !important;
}

.footer-column h4 {
    color: #0d2c54 !important;
    font-family: 'Playfair Display', Georgia, serif !important;
}

.footer-column p,
.footer-column span,
.footer-column a,
.footer-column li a,
.footer-menu a {
    color: #555 !important;
}

.footer-column a:hover,
.footer-menu a:hover,
.footer-column li a:hover {
    color: #c5a449 !important;
}

.footer-column.contact-column a {
    color: #555 !important;
}

.footer-column.contact-column a:hover {
    color: #c5a449 !important;
}

.footer-column .contact-item i {
    color: #c5a449 !important;
}

.footer-column .contact-item strong {
    color: #0d2c54 !important;
}

.social-icons a {
    color: #0d2c54 !important;
}

.social-icons a:hover {
    color: #c5a449 !important;
}

.footer-logo img,
.site-footer .custom-logo {
    height: 100px !important;
    width: auto !important;
}

.footer-bottom {
    border-top: 1px solid rgba(13, 44, 84, 0.1) !important;
    color: #888 !important;
}

.footer-bottom p {
    color: #888 !important;
}

.footer-bottom-links a {
    color: #888 !important;
}

.footer-bottom-links a:hover {
    color: #c5a449 !important;
}

/* Golden separator override for light footer */
.footer-bottom::before {
    background: linear-gradient(90deg, transparent, rgba(197, 164, 73, 0.5), transparent) !important;
}

/* ============================================
   BACKGROUND PATTERN — ORGANIC CURVES
   ============================================ */

/* Replace blocky diamond pattern with organic flowing shapes */
.site-main article .container::before,
.page-content::before,
.post-content::before {
    background-image: none !important;
    background: 
        radial-gradient(ellipse 80px 60px at 15% 20%, rgba(197, 164, 73, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 120px 80px at 85% 30%, rgba(13, 44, 84, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 100px 70px at 40% 60%, rgba(197, 164, 73, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 90px 90px at 75% 75%, rgba(13, 44, 84, 0.025) 0%, transparent 70%),
        radial-gradient(ellipse 70px 50px at 25% 85%, rgba(197, 164, 73, 0.035) 0%, transparent 70%),
        radial-gradient(ellipse 60px 80px at 60% 15%, rgba(13, 44, 84, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 110px 60px at 50% 45%, rgba(197, 164, 73, 0.025) 0%, transparent 70%) !important;
    opacity: 1 !important;
    animation: organicFloat 12s ease-in-out infinite alternate !important;
}

@keyframes organicFloat {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.02) rotate(0.5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Decorative curved shapes on pages */
.page-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 164, 73, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 44, 84, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-header {
    position: relative;
    overflow: hidden;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

/* Wavy divider between sections */
.services-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23f8f9fe' d='M0,20 C240,40 480,0 720,20 C960,40 1200,0 1440,20 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

.services-section {
    position: relative;
}

/* Organic blob accents on testimonial section */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    background: radial-gradient(circle, rgba(197, 164, 73, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: blobMorph 8s ease-in-out infinite alternate;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -3%;
    width: 250px;
    height: 250px;
    border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
    background: radial-gradient(circle, rgba(13, 44, 84, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: blobMorph 10s ease-in-out infinite alternate-reverse;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-section > * {
    position: relative;
    z-index: 1;
}

@keyframes blobMorph {
    0% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; transform: scale(1); }
    33% { border-radius: 50% 60% 40% 60% / 40% 50% 60% 50%; transform: scale(1.05); }
    66% { border-radius: 40% 50% 60% 40% / 60% 40% 50% 60%; transform: scale(0.98); }
    100% { border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%; transform: scale(1.02); }
}

@media (max-width: 768px) {
    .footer-logo img,
    .site-footer .custom-logo {
        height: 70px !important;
    }
    
    .testimonial-section::before,
    .testimonial-section::after {
        display: none;
    }
    
    .page-header::before,
    .page-header::after {
        display: none;
    }
}

/* ============================================
   HERO MOBILE — PHOTO ON TOP
   ============================================ */

@media (max-width: 1100px) {
    .hero-section {
        flex-direction: column-reverse !important;
    }
    
    .hero-image-container {
        margin-top: 0 !important;
        margin-bottom: 30px;
    }
}

/* ============================================
   HERO PHOTO — ORNAMENTAL BORDER / RIBBON
   ============================================ */

.hero-woman-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    border: 3px solid rgba(197, 164, 73, 0.4);
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 0.8),
        0 0 0 9px rgba(197, 164, 73, 0.25),
        0 20px 50px rgba(13, 44, 84, 0.15);
}

.hero-image-container {
    position: relative;
}

/* Decorative corner flourishes */
.hero-image-container::before,
.hero-image-container::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(197, 164, 73, 0.5);
    z-index: 3;
    pointer-events: none;
}

.hero-image-container::before {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.hero-image-container::after {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Flowing ribbon accent behind photo */
.hero-woman-img::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -20px;
    width: 40px;
    height: 70%;
    background: linear-gradient(180deg, 
        rgba(197, 164, 73, 0.15) 0%,
        rgba(197, 164, 73, 0.35) 30%,
        rgba(197, 164, 73, 0.35) 70%,
        rgba(197, 164, 73, 0.15) 100%
    );
    border-radius: 20px;
    z-index: 1;
    filter: blur(8px);
    animation: ribbonGlow 4s ease-in-out infinite alternate;
}

@keyframes ribbonGlow {
    0% { opacity: 0.5; transform: scaleY(0.95); }
    100% { opacity: 1; transform: scaleY(1.05); }
}

/* Second ribbon on left */
.hero-image-container > .hero-woman-img ~ *:last-child::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -15px;
    width: 30px;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(13, 44, 84, 0.08) 0%,
        rgba(13, 44, 84, 0.2) 50%,
        rgba(13, 44, 84, 0.08) 100%
    );
    border-radius: 15px;
    z-index: 1;
    filter: blur(6px);
}

/* Subtle sparkle dots around photo */
.hero-image-container .hero-woman-img {
    animation: photoFloat 6s ease-in-out infinite alternate;
}

@keyframes photoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .hero-image-container::before,
    .hero-image-container::after {
        width: 40px;
        height: 40px;
    }
    
    .hero-image-container::before {
        top: -8px;
        left: -8px;
    }
    
    .hero-image-container::after {
        bottom: -8px;
        right: -8px;
    }
    
    .hero-woman-img {
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image-container .hero-woman-img {
        animation: none;
    }
}

/* ============================================
   Trust Banner — auto-scrolling logo marquee
   ============================================ */
.trust-banner {
    position: relative;
    padding: 72px 0 56px;
    text-align: center;
    background:
        radial-gradient(1200px 280px at 50% 0%, rgba(234, 88, 12, 0.04), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.trust-banner .trust-label {
    font-family: "League Spartan", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 36px;
}
.trust-banner .trust-caption {
    font-family: "League Spartan", system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 32px 0 0;
    font-style: italic;
}
.trust-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.trust-track {
    display: flex;
    width: max-content;
    animation: trust-scroll 42s linear infinite;
    will-change: transform;
}
.trust-set {
    display: flex;
    align-items: center;
    gap: 72px;
    padding: 0 36px;
    margin: 0;
    list-style: none;
    flex-shrink: 0;
}
.trust-logo {
    flex: 0 0 auto;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
    opacity: 0.72;
    filter: grayscale(100%) contrast(0.92);
}
.trust-logo img {
    max-height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(1);
    transform: translateY(-2px) scale(1.04);
}
.trust-marquee:hover .trust-track {
    animation-play-state: paused;
}
@keyframes trust-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .trust-track { animation: none; }
    .trust-marquee {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
}
@media (max-width: 768px) {
    .trust-banner { padding: 56px 0 44px; }
    .trust-set { gap: 32px; padding: 0 16px; }
    .trust-logo, .trust-logo img { height: 36px; max-height: 36px; }
    .trust-logo img { max-width: 100px; }
    .trust-track { animation-duration: 24s; }
}

/* ── Hero new elements ── */
.hero-function-title {
    font-family: "League Spartan", system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fefefe;
    text-shadow: 1px 1px 1px rgba(0,0,0,.8);
    margin-bottom: 6px;
}
.hero-tagline {
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(254,254,254,0.85);
    text-shadow: 1px 1px 1px rgba(0,0,0,.6);
    margin-bottom: 28px;
}

/* ── CV download button ── */
.btn-outline {
    background-color: transparent;
    color: #fefefe;
    border: 2px solid rgba(254,254,254,0.6);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: rgba(254,254,254,0.12);
    border-color: #fefefe;
    color: #fefefe;
}

/* ── Contact section note ── */
.selective-note {
    font-style: italic;
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 8px;
}
.contact-promo-section .content-text a {
    color: #6e48ff;
    text-decoration: underline;
    font-weight: 600;
}
