/* 
Styles for deepnudetelegramAU.site
Australian color palette:
- Navy Blue: #00008B (Australian flag blue)
- Red: #FF0000 (Australian flag red)
- Golden Yellow: #FFCD00 (Australian gold)
- Forest Green: #006400 (Australian landscapes)
- White: #FFFFFF
*/

/* CSS Variables */
:root {
    --aussie-blue: #00008B;
    --aussie-red: #FF0000;
    --aussie-gold: #FFCD00;
    --aussie-green: #006400;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --mid-grey: #DDDDDD;
    --dark-grey: #333333;
    --transition: all 0.3s ease-in-out;
    --border-radius: 6px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--light-grey);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 3rem;
}

/* Australian Banner */
.aussie-banner {
    background-color: var(--aussie-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.aussie-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    width: 24px;
    height: 16px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-img {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    color: var(--aussie-blue);
    display: block;
    font-size: 0.8rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--aussie-blue);
}

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

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--aussie-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--aussie-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--aussie-red);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 0, 139, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 139, 0.03) 50%, rgba(0, 0, 139, 0.03) 75%, transparent 75%);
    background-size: 30px 30px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--aussie-blue);
}

.gradient-text {
    background: linear-gradient(90deg, var(--aussie-blue), var(--aussie-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark-grey);
    max-width: 90%;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--aussie-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--aussie-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--aussie-blue);
    color: var(--aussie-blue);
}

.btn-secondary:hover {
    background-color: var(--aussie-blue);
    color: var(--white);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature svg {
    width: 18px;
    height: 18px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-graphic {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--aussie-blue);
    margin-bottom: 15px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--aussie-blue), var(--aussie-red));
    margin: 15px auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: var(--light-grey);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--aussie-blue);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--aussie-red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--aussie-blue);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-grey);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 0, 139, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

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

.step-card {
    background-color: var(--light-grey);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--aussie-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card:nth-child(2) .step-number {
    background-color: var(--aussie-gold);
    color: var(--dark-grey);
}

.step-card:nth-child(3) .step-number {
    background-color: var(--aussie-red);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--aussie-blue);
}

.step-card p {
    color: var(--dark-grey);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 205, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(0, 0, 139, 0.1);
    line-height: 1;
}

.stars {
    display: flex;
    margin-bottom: 15px;
    color: var(--aussie-gold);
}

.star {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--mid-grey);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--aussie-blue);
}

.author-location {
    font-size: 0.85rem;
    color: var(--dark-grey);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--aussie-blue), var(--aussie-red));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--white);
    color: var(--aussie-blue);
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    padding: 14px 30px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background-color: var(--aussie-gold);
    color: var(--dark-grey);
}

/* Footer */
.footer {
    background-color: var(--aussie-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--aussie-red);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--aussie-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 50px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
