/* 
   Aurora Ledger Solutions - Main Stylesheet
   Color Palette:
   - Primary: #4B2E83 (Deep Purple)
   - Accent: #FF9F1C (Amber Orange)
   - Background: #FCFAF2 (Milk White)
   - Text: #1C1C1E (Dark Graphite)
   - UI Elements: #A4DE02 (Light Green Accent)
*/

/* ---------- Reset & Base Styles ---------- */
:root {
    --color-primary: #4B2E83;
    --color-accent: #FF9F1C;
    --color-background: #FCFAF2;
    --color-text: #1C1C1E;
    --color-ui: #A4DE02;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-accent);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 15px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #3a2366;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: white;
}

.btn-secondary:hover {
    background-color: #e68c00;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* ---------- Header & Navigation ---------- */
.site-header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 15px;
}

main {
    margin-top: 80px;
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: linear-gradient(rgba(75, 46, 131, 0.9), rgba(75, 46, 131, 0.7)), url('../img/A8ogqL.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ---------- About Section ---------- */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: rotate(2deg);
    transition: transform var(--transition-speed);
}

.about-image:hover {
    transform: rotate(0);
}

/* ---------- Benefits Section ---------- */
.benefits-section {
    background-color: #f8f8f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed);
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(75, 46, 131, 0.1);
    border-radius: 50%;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ---------- Services Section ---------- */
.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.pricing-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--color-accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-ui);
    position: absolute;
    left: 0;
}

.pricing-card .btn {
    display: block;
    width: 100%;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    background-color: var(--color-primary);
    color: white;
}

.testimonials-section h2 {
    color: white;
}

.testimonials-section h2::after {
    background-color: var(--color-ui);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform var(--transition-speed);
}

.testimonial:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    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 {
    margin-bottom: 5px;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---------- Contact Form Section ---------- */
.contact-section {
    background: linear-gradient(rgba(255, 159, 28, 0.9), rgba(255, 159, 28, 0.7)), url('../img/vGIReT.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-section h2 {
    color: white;
}

.contact-section h2::after {
    background-color: white;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.contact-form .btn {
    margin-top: 10px;
}

/* ---------- FAQ Section ---------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    background-color: white;
    position: relative;
    transition: background-color var(--transition-speed);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.faq-toggle:checked + .faq-question {
    background-color: var(--color-primary);
    color: white;
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed);
    background-color: white;
    padding: 0 20px;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--color-accent);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact img {
    width: 18px;
    height: 18px;
}

.footer-contact a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* ---------- Cookie Consent ---------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 30, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent p {
    margin: 0;
}

.cookie-consent form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-policy-link {
    color: var(--color-accent);
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .pricing-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background-color: var(--color-primary);
        height: 3px;
        width: 30px;
        border-radius: 2px;
        position: relative;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        bottom: 8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        width: 0;
        height: 0;
        overflow: hidden;
        transition: all var(--transition-speed);
        opacity: 0;
        visibility: hidden;
        box-shadow: var(--box-shadow);
    }
    
    .nav-toggle:checked ~ .main-nav {
        width: 100%;
        height: auto;
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-cta {
        margin-top: 10px;
        text-align: center;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        max-width: 100%;
    }
    
    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent form {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for benefits */
.benefit-item {
    animation: fadeInUp 0.5s both;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for pricing cards */
.pricing-card {
    animation: fadeIn 0.5s both;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll reveal animation - activate with :target */
section:target {
    animation: highlightSection 1s;
}

@keyframes highlightSection {
    0% {
        background-color: rgba(164, 222, 2, 0.2);
    }
    100% {
        background-color: transparent;
    }
} 