/* ==========================================
   1. CORE CONFIGURATIONS & RESETS
   ========================================== */
:root {
    --primary-color: #007aff; /* Apple Blue tint */
    --text-main: #024677;
    --text-muted: #8e8e93;
    --bg-light: #f2f2f7;
    --bg-white: #ffffff;
    --max-width: 1100px;
    --primary-font:  'Courier New', Courier, monospace	;
}

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

html {
  scroll-behavior: smooth;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
    font-family: var(--primary-font);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.5;
}
.p-bold {
    font-weight: 700;
    color: var(--text-main);
}

.header-h1 {
    font-family: var(--primary-font);
    font-size: 82px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--color-text)
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.small-container {
    max-width: 650px;
}

/* ==========================================
   2. NAVBAR COMPONENT
   ========================================== */
.navbar {
    height: 110px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5ea;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
}

.app-icon-small {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero {
    padding: 30px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: left;
    gap: 40px;
    font-family: var(--primary-font);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--color-text)
}
.hero-text h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--color-text)
}
.hero-text h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--color-text)
}

.hero-text p {
    font-size: 18px;
    color: var(--color-text-2);
    margin-bottom: 16px;
}

.hero-text li {
    font-size: 18px;
    margin-left: 1.5em;
    color: var(--color-text-2);
}

.app-store-badge img {
    height: 44px;
    transition: transform 0.2s;
}

.app-store-badge img:hover {
    transform: scale(1.02);
}

.hero-mockup {
    display: flex;
    justify-content: left;
}

.hero-about {
    font-size: 20px;
    /* font-weight: 600; */
    margin-left: 1.5em;
    color: var(--color-text-2);

}

/* ==========================================
   4. IMAGE CAROUSEL COMPONENT
   ========================================== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 700px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    background: #f6f2f2;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(213, 199, 199, 0.25);
    backdrop-filter: blur(5px);
    border: none;
    color: rgb(46, 126, 239);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
}

.carousel-btn:hover { background: rgba(255,255,255,0.4); }
.prev-btn { left: 12px; }
.next-btn { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(18, 17, 17, 0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active { background: rgb(157, 6, 6); }

/* ==========================================
   5. INTERACTIVE FAQ ACCORDION COMPONENT
   ========================================== */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-item {
    background: var(--bg-white);
    font-family: var(--primary-font);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    color: var(--color-text-2);
    font-size: 15px;
    font-family: var(--primary-font);
}

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

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

.faq-icon {
    transition: transform 0.2s;
    font-size: 20px;
    color: var(--primary-color);
}

/* ==========================================
   6. CONTACT & SUPPORT FORM COMPONENT
   ========================================== */
.contact-section {
    padding: 80px 0;
}

.support-form {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
        font-family: var(--primary-font);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d1d6;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-size: 16px;
    background: var(--bg-white);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
        font-family: var(--primary-font);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* ==========================================
   7. FOOTER COMPONENT
   ========================================== */
.footer {
    border-top: 1px solid #e5e5ea;
    padding: 40px 0;
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ==========================================
   8. RESPONSIVE MEDIA QUERIES (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr; /* this causes the grid to stack items vertically */
        text-align: left;
    }
    .header-h1 {
        font-size: 42px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}
.button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.box {
   display: flex;
   align-items:center;
   padding: 5px;
}

.icon-image {
    width: auto;
    height: 40px;
    padding-right: 10px;
}