/* Import default styles */
@import url('./default.css');

/* ============================================================================
   INDEX PAGE SPECIFIC STYLES
   ============================================================================ */

/* Website Importance Section */
.website-importance-section {
    background: var(--light-accent) !important;
    position: relative;
    z-index: 2;
}

.website-importance-circles::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -25px; /* Changed from -50px */
    width: 150px; /* Changed from 200px */
    height: 150px; /* Changed from 200px */
    background: rgba(109, 0, 26, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.website-importance-circles::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -15px; /* Changed from -30px */
    width: 100px; /* Changed from 150px */
    height: 100px; /* Changed from 150px */
    background: rgba(109, 0, 26, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.angie-solution-highlight {
    background: rgba(109, 0, 26, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* What's Included Section */
.whats-included-section {
    background: var(--white) !important;
}

.included-list {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: left;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(109, 0, 26, 0.08);
}

.included-item:last-child {
    border-bottom: none;
}

.included-item i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.included-content {
    color: var(--dark);
}

.included-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Who I Work With Section */
.feature-item {
    text-align: center;
    background-color: white;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-item:hover .feature-image img {
    transform: scale(1.08);
}

.feature-content {
    padding: 2.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background-color: rgba(109, 0, 26, 0.08);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: var(--dark);
}

.feature-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.feature-content p {
    color: var(--secondary-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* Brand Discovery Section */
.brand-discovery-section {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(109, 0, 26, 0.1);
}

.brand-discovery-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -25px; /* Changed from -50px */
    width: 150px; /* Changed from 200px */
    height: 150px; /* Changed from 200px */
    background: rgba(109, 0, 26, 0.08);
    border-radius: 50%;
    animation: brandFloat 6s ease-in-out infinite;
}

.brand-discovery-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -15px; /* Changed from -30px */
    width: 100px; /* Changed from 150px */
    height: 100px; /* Changed from 150px */
    background: rgba(109, 0, 26, 0.05);
    border-radius: 50%;
    animation: brandFloat 8s ease-in-out infinite reverse;
}

@keyframes brandFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.brand-discovery-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(109, 0, 26, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-discovery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.card-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    text-align: left;
}

.card-content h2:after {
    left: 0;
    transform: none;
}

.card-content p {
    font-size: 1.1rem;
    color: var(--secondary-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.brand-time-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(40, 167, 69, 0.2);
    width: fit-content;
}

.brand-time-indicator i {
    color: #28a745;
    font-size: 1.2rem;
}

.brand-time-indicator span {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
}

.brand-cta-btn {
    margin-top: 1rem;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.card-visual {
    text-align: center;
    position: relative;
}

.mockup-browser {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-browser:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #dee2e6;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27ca3f; }

.browser-content {
    text-align: center;
    padding: 2rem 1rem;
}

.mock-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.mock-progress {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.mock-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 60%;
    border-radius: 4px;
    animation: brandProgressPulse 2s ease-in-out infinite;
}

@keyframes brandProgressPulse {
    0%, 100% { width: 60%; }
    50% { width: 80%; }
}

.mock-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1rem 0;
}

.mock-option {
    background: rgba(109, 0, 26, 0.05);
    border: 1px solid rgba(109, 0, 26, 0.1);
    border-radius: 8px;
    padding: 0.8rem 0.5rem;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mock-option:hover {
    background: rgba(109, 0, 26, 0.1);
    border-color: rgba(109, 0, 26, 0.2);
    transform: translateY(-2px);
}

.mock-status {
    font-size: 0.8rem;
    color: var(--secondary);
    margin: 1rem 0 0 0;
    font-style: italic;
}

/* FAQ Accordion */
.faq-section {
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: rgba(109, 0, 26, 0.02);
}

.faq-accordion-item.active .faq-question {
    background-color: rgba(109, 0, 26, 0.05);
    border-bottom-color: rgba(109, 0, 26, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
    flex-grow: 1;
    padding-right: 1rem;
}

.faq-accordion-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-icon {
    font-size: 1rem;
    color: var(--secondary);
    transition: transform 0.3s ease, color 0.3s ease;
    min-width: 20px;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(109, 0, 26, 0.02);
}

.faq-accordion-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--secondary-dark);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-visual {
        order: 1;
    }
    
    .card-content {
        order: 2;
        text-align: center;
    }

    .brand-discovery-card {
        padding: 2rem 1.5rem;
    }

    .card-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .card-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .brand-time-indicator {
        margin: 2rem auto;
        justify-content: center;
    }

    .brand-cta-btn {
        width: 100%;
        margin-top: 1.5rem;
    }

    .mockup-browser {
        max-width: 350px;
        margin: 0 auto;
    }

    .card-visual {
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(109, 0, 26, 0.1);
        position: relative;
    }

    .included-list {
        margin-top: 2rem;
    }

    .included-item {
        padding: 0.8rem 0;
        font-size: 1rem;
    }

    .included-item i {
        font-size: 1.1rem;
    }

    .feature-image {
        height: 240px;
    }

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

    .feature-title:after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .faq-accordion {
        margin-top: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-accordion-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .brand-discovery-card {
        padding: 1.5rem 1rem;
        margin: 0; 
        border-radius: 15px;
    }

    .card-content h2 {
        font-size: 1.8rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .benefit-item {
        font-size: 0.95rem;
    }

    .brand-time-indicator {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }

    .mock-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mock-option {
        padding: 0.6rem 0.5rem;
        font-size: 0.75rem;
    }

    .browser-content {
        padding: 1.5rem 0.8rem;
    }

    .mock-title {
        font-size: 1.1rem;
    }

    .included-list {
        margin: 1.5rem 0 0;
        padding: 0 1rem;
    }

    .included-item {
        padding: 0.7rem 0;
        font-size: 0.95rem;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content {
        padding: 1.8rem 1.2rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-accordion-item.active .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
    }
}

/* ============================================================================
   HIDE UNWANTED ELEMENTS
   ============================================================================ */

/* Hide certificate verification popup and all unwanted elements */
#certificate-modal,
.cert-modal,
.certificate-verification,
.verify-certificate,
[class*="verify"],
[class*="certificate-verify"],
.hot-days-ahead,
.scroll-top,
.scroll-top.active,
button.scroll-top,
.fa-arrow-up,
.fas.fa-arrow-up {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Hide any scroll to top buttons */
*[class*="scroll-top"],
*[class*="scroll-to-top"],
.back-to-top {
    display: none !important;
}

/* Hide Font Awesome arrow up icons */
.fa-arrow-up:before,
.fas.fa-arrow-up:before {
    display: none !important;
}

/* If it's an iframe or embedded widget */
iframe[src*="verify"],
iframe[src*="certificate"] {
    display: none !important;
}

/* Hide grammarly integration */
grammarly-desktop-integration,
[data-grammarly-shadow-root] {
    display: none !important;
}

/* Hide decorative elements on mobile to prevent overflow */
@media (max-width: 768px) {
    .brand-discovery-section::before,
    .brand-discovery-section::after,
    .website-importance-circles::before,
    .website-importance-circles::after {
        display: none;
    }
    @media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        max-width: none;
    }
    
}
}
/* Mobile inline image - hidden by default on desktop */
.mobile-inline-image {
  display: none !important;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-inline-image {
    display: block !important;
    text-align: center;
    margin: 1.5rem 0;
  }
  
  .mobile-inline-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
  }
  
  /* Hide the original image in the grid on mobile */
  .website-importance-section .repositionable-image {
    display: none;
  }
}