/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --color-primary: #CD2F2C;
    /* Red */
    --color-secondary: #00237D;
    /* Navy Blue */
    --color-text-body: #2C2D36;
    --color-text-light: #F9F5EC;
    --color-bg-light: #F9F9F9;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 35, 125, 0.2);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.relative {
    position: relative;
}

.z-10 {
    position: relative;
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    /* Modern rounded */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #a5211e);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 47, 44, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(205, 47, 44, 0.6);
}

.btn-white {
    background: white;
    color: var(--color-primary);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Pulse Animation */
.pulse-btn {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(205, 47, 44, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(205, 47, 44, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(205, 47, 44, 0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header */
.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA Section Redesign */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary), #800000);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 20px 50px rgba(205, 47, 44, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
    background: white;
    color: var(--color-primary);
    padding: 18px 45px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--color-primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section (Parallax) */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.parallax-hero {
    background-image: url('assets/images/luxury_villa_ac_hero_1768640993555.png');
    /* Use generated image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Simple CSS Parallax */
    position: relative;
    overflow: hidden;
}

.hero-graphic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero_overlay_graphic_1768641903270.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    mix-blend-mode: screen;
    z-index: 2;
    animation: pulse-overlay 4s infinite alternate;
}

@keyframes pulse-overlay {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 0.7;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 35, 125, 0.9), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

/* Increased z-index */

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Floating Icons in Hero */
.floating-icon {
    position: absolute;
    z-index: 1;
    color: rgba(255, 255, 255, 0.1);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
    font-size: 6rem;
}

.icon-3 {
    top: 60%;
    left: 50%;
    animation-delay: 4s;
    font-size: 3rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Stats Strip */
.stats-strip {
    background: white;
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item .counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.stat-item p {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* About Section */
.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-img-wrapper {
    flex: 1;
    position: relative;
}

.hover-scale-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s;
    object-fit: cover;
}

.hover-scale-img:hover {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(205, 47, 44, 0.4);
    text-align: center;
    border: 5px solid white;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-content {
    flex: 1;
}

.feature-list {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-primary);
}

.feature-item h4 {
    color: var(--color-secondary);
    margin-bottom: 5px;
}

/* 3D Flip Cards */
.services-section {
    background: var(--color-bg-light);
    perspective: 1000px;
}

.services-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.flip-card {
    background-color: transparent;
    height: 350px;
    perspective: 1000px;
    /* Remove if causing issues */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: var(--shadow-soft);
    border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card-front {
    background: white;
    color: black;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.card-indicator {
    margin-top: auto;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
}

/* Marquee Testimonials */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 50px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 30px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 350px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    white-space: normal;
    border: 1px solid #eee;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* FAQ Section Redesign */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.4s ease;
    background: rgba(205, 47, 44, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    border-top: 1px solid #eee;
}

/* Footer Redesign */
footer {
    background: linear-gradient(to right, #0a192f, #112240);
    color: #e6f1ff;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

/* Footer Background Pattern */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(205, 47, 44, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

footer::before {
    display: none;
    /* Remove old border */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-col p {
    color: #8892b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #8892b0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #8892b0;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-contact span {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8892b0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.copyright a {
    color: #e6f1ff;
    margin: 0 10px;
}

.copyright a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* =========================================
   Mobile Navigation & Dropdown
   ========================================= */

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--color-secondary);
    z-index: 1001;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(205, 47, 44, 0.05);
    color: var(--color-primary);
    padding-left: 25px;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        height: 80px;
    }

    /* Hide 'Get a Quote' button on mobile */
    .navbar .btn {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Mobile Menu Overlay */
    .hamburger {
        display: block;
        margin-left: auto;
        /* Force to right */
        z-index: 2001;
        /* Ensure above menu */
    }

    /* Remove nav from flex flow to let justification work */
    nav {
        display: contents;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 40px;
        z-index: 2000;
        gap: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    /* Mobile Dropdown Behavior */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: transparent;
        padding-left: 0;
        text-align: center;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 10px;
        border-left: 2px solid var(--color-primary);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 0;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .stats-strip {
        margin-top: 0;
        padding: 30px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 20px;
        right: -10px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    footer::after {
        width: 200px;
        height: 200px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Premium Contact Page Styles
   ========================================= */

.contact-hero-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

/* Contact Page Flex Layout */
.contact-container-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
}

.contact-form-col {
    flex: 1.2;
}

@media (max-width: 768px) {
    .contact-container-flex {
        flex-direction: column;
        gap: 40px;
    }
}

.premium-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.premium-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(205, 47, 44, 0.1);
}

.form-control::placeholder {
    color: #bbb;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Page Header for Inner Pages */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--color-secondary), #0b1c3e);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-header .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 30px 30px;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Button Link for Blog */
.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--effect-glow);
}

.btn-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}