:root {
    /* Colors */
    --primary-color: #002D62;
    /* Navy Blue - Trust */
    --primary-light: #004085;
    --secondary-color: #FFC107;
    /* Soft Orange/Yellow - Alert/Energy */
    --secondary-hover: #e0a800;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --background-gray: #f8f9fa;
    --success: #28a745;

    /* Font */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    /* Adjust as needed */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
}

.logo-text .title {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    /* Space for fixed header */
    padding-bottom: 100px;
    background-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Abstract Background Pattern */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 98, 0.95) 0%, rgba(0, 25, 55, 0.98) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background-color: rgba(255, 193, 7, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust i {
    color: var(--success);
}

/* Hero Image Profile */
/* Hero Image Profile */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-profile-img {
    width: auto;
    max-width: 150%;
    max-height: 700px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-profile-img:hover {
    transform: scale(1.12);
}

/* Authority Bar */
.authority-bar {
    background-color: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    margin-top: -50px;
    /* Slight overlap with hero if we adjust spacing later, currently standard block flow */
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.authority-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.license-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
}

.license-label {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.license-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.regulators-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.regulator-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.regulator-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps if the png isn't perfectly transparent on white, though user said it's png */
}

/* Shared Section Styles */
.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-hover);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 45, 98, 0.05);
    /* Light primary */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 25px auto;
    transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Choose Me Section */
.why-choose-section {
    padding: var(--section-padding);
    background-color: var(--background-gray);
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-image {
    flex: 1;
}

.why-choose-img-real {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder-vertical {
    width: 100%;
    height: 500px;
    background-color: #ddd;
    /* Light gray placeholder */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom right, #ccc, #aaa);
}

.why-choose-content {
    flex: 1;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.features-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--secondary-hover);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: rgba(0, 45, 98, 0.2);
    margin-top: 30px;
    display: block;
    /* Hidden on mobile */
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.testimonials-section h2 {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 193, 7, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1rem;
}

.client-info {
    font-weight: 600;
}

.client-name {
    display: block;
    color: var(--secondary-color);
}

.client-loc {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--success);
}

.guarantee-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.guarantee-badge p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.2;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

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

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background-color: #001f44;
    color: white;
    padding: 60px 0 30px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 18px 40px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Contact Email Link in Footer */
.contact-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-email {
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.developer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 5px;
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.developer-credit a:hover {
    color: var(--secondary-color);
}

/* Mobile Adjustments for new sections */
@media (max-width: 900px) {
    .header-container {
        padding: 0 15px;
    }

    .nav {
        display: none;
        /* Mobile menu implementation later */
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-img-placeholder {
        width: 100%;
        height: 300px;
    }

    .hero-profile-img {
        max-height: 350px;
        margin-top: 20px;
    }

    .authority-container {
        justify-content: center;
    }

    .why-choose-container {
        flex-direction: column;
    }

    .why-choose-image {
        order: 2;
        /* Put image after text on mobile */
        width: 100%;
    }

    .image-placeholder-vertical {
        height: 300px;
    }

    .process-steps {
        flex-direction: column;
        gap: 0;
    }

    .step {
        width: 100%;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        display: none;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }
}

/* Works Gallery Carousel - Restored */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--background-gray);
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    /* Fixed height for consistency */
    overflow: hidden;
    /* Hide overflow to prevent stacking visibility */
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    /* Dark background for media */
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* Force height */
}

.gallery-item-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Uniform thumbnails */
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item-media:hover {
    transform: scale(1.02);
}

/* Video Play Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    pointer-events: none;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 45, 98, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background 0.3s;
}

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

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Carousel Navigation Indicators */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
}

/* Modal / Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .carousel {
        height: 300px;
    }
}

/* Credentials / ID Cards Section */
.credentials-section {
    padding: 40px 0 80px 0;
    /* Reduced top padding as requested */
    background-color: white;
}

.credentials-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.credential-card-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure centered label */
}

/* ...rest of styles... */

@media (max-width: 768px) {
    .credentials-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .credential-card-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.credential-card {
    width: 340px;
    height: 215px;
    background: linear-gradient(135deg, #002D62, #004e92);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Floating Animation */
@keyframes cardFloat {
    0% {
        transform: translateY(0px) rotateX(0deg);
    }

    50% {
        transform: translateY(-10px) rotateX(2deg);
    }

    100% {
        transform: translateY(0px) rotateX(0deg);
    }
}

.credential-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.credential-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

/* Lighting / Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.2) 47%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    background-size: 250% 250%;
    animation: shinePosition 5s infinite linear;
    pointer-events: none;
}

@keyframes shinePosition {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    border-radius: 15px;
}

.credential-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .credentials-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .credential-card-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Instagram Button */
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    border: none;
    font-size: 1.1rem;
    padding: 14px 30px;
}

.btn-instagram:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
    color: white;
}

.instagram-cta {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--background-gray);
    border-radius: 15px;
    border: 1px dashed #ddd; /* Subtle separation */
}

.instagram-cta p {
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}
