/* 
   Elite İş Koçluğu - Main Stylesheet
   Author: AI Assistant
   Version: 1.0
*/

/* ===== CSS Variables for Design System ===== */
:root {
    /* Tetrad Color Scheme */
    --primary-color: #2c3e50;       /* Deep blue */
    --primary-light: #3498db;       /* Light blue */
    --primary-dark: #1a2530;        /* Darker blue */
    
    --secondary-color: #e74c3c;     /* Red */
    --secondary-light: #f39c12;     /* Orange */
    --secondary-dark: #c0392b;      /* Dark red */
    
    --tertiary-color: #27ae60;      /* Green */
    --tertiary-light: #2ecc71;      /* Light green */
    --tertiary-dark: #219653;       /* Dark green */
    
    --quaternary-color: #9b59b6;    /* Purple */
    --quaternary-light: #d2a5e5;    /* Light purple */
    --quaternary-dark: #8e44ad;     /* Dark purple */
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e5eb;
    --dark-gray: #6c757d;
    --black: #2d3436;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --glass-blur: 10px;
    
    /* Fonts */
    --heading-font: 'Oswald', sans-serif;
    --body-font: 'Nunito', sans-serif;
    
    /* Spacing */
    --section-spacing: 80px;
    --element-spacing: 30px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Borders */
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ===== Base Styles ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--primary-color);
    background-color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 0 !important; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    color: var(--primary-color);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light), var(--secondary-color));
    margin: 0 auto 40px;
    border-radius: var(--border-radius-sm);
}

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

.rounded-custom {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.rounded-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

section {
    padding: 80px 0;
    position: relative;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-md);
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    background-color: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* ===== Glassmorphism Components ===== */
.glassmorphism-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    padding: 30px;
    transition: var(--transition-medium);
}

.glassmorphism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 0 var(--glass-shadow);
}

.glassmorphism-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.glassmorphism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--primary-light), transparent 60%),
                radial-gradient(circle at bottom left, var(--secondary-light), transparent 60%);
    opacity: 0.05;
    z-index: -1;
}

.glassmorphism-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

/* ===== Header & Navigation ===== */
header {
    width: 100%;
    transition: var(--transition-medium);
}

header.sticky-top {
    top: 0;
}

.navbar-brand h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 15px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-light), var(--secondary-color));
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-light);
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

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

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--white);
    max-width: 80%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Mission Section ===== */
.mission-section {
    position: relative;
    overflow: hidden;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.mission-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-content p {
    margin-bottom: 20px;
}

.asymmetric-layout {
    position: relative;
}

/* ===== History Section ===== */
.history-section {
    position: relative;
    background-color: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-light), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: var(--border-radius-sm);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--primary-light);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -10px;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    position: relative;
    border-radius: var(--border-radius-lg);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.timeline-content img {
    margin-top: 20px;
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* ===== Insights Section ===== */
.insights-section {
    position: relative;
}

.insight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: var(--transition-medium);
}

.insight-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.insight-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 0 20px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-content .btn {
    align-self: center;
    margin-top: auto;
}

/* ===== Resources Section ===== */
.resources-section {
    background-color: var(--light-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-item {
    text-align: center;
    padding: 30px;
    transition: var(--transition-medium);
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resource-item p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* ===== Community Section ===== */
.community-section {
    position: relative;
}

.community-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.community-content p {
    margin-bottom: 20px;
}

.community-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.community-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-container {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ===== Sustainability Section ===== */
.sustainability-section {
    background-color: var(--light-gray);
    position: relative;
}

.sustainability-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustainability-content {
    padding: 40px;
}

.sustainability-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sustainability-content p {
    margin-bottom: 20px;
}

.progress-container {
    margin-top: 30px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.custom-progress {
    height: 10px;
    background-color: var(--medium-gray);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
}

.custom-progress .progress-bar {
    background: linear-gradient(to right, var(--primary-light), var(--tertiary-light));
    border-radius: var(--border-radius-sm);
}

/* ===== FAQ Section ===== */
.faq-section {
    position: relative;
}

.accordion-item {
    margin-bottom: 20px;
    border: none;
}

.accordion-button {
    background: transparent;
    font-weight: 700;
    padding: 20px;
    border: none;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-light);
    background: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233498db'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition-fast);
}

.accordion-body {
    padding: 0 20px 20px;
}

/* ===== Media Section ===== */
.media-section {
    background-color: var(--light-gray);
    position: relative;
}

.media-content {
    padding: 40px;
    height: 100%;
}

.media-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.media-list {
    margin: 30px 0;
}

.media-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.media-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.media-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.media-item p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

.video-container {
    padding: 40px;
    height: 100%;
}

.video-container h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    height: auto;
    transition: var(--transition-medium);
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.play-button span {
    font-size: 30px;
    color: var(--primary-light);
}

.video-wrapper:hover .play-button {
    background-color: var(--primary-light);
}

.video-wrapper:hover .play-button span {
    color: var(--white);
}

.podcast-link {
    margin-top: 30px;
}

.podcast-link h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.podcast-link p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

/* ===== Careers Section ===== */
.careers-section {
    position: relative;
}

.careers-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.careers-content p {
    margin-bottom: 20px;
}

.open-positions {
    margin-top: 40px;
}

.open-positions h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.position-item {
    margin-bottom: 20px;
    padding: 25px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.position-item:hover {
    transform: translateY(-5px);
}

.position-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.position-item p {
    margin-bottom: 15px;
    color: var(--dark-gray);
    flex-grow: 1;
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--light-gray);
    position: relative;
}

.contact-info {
    height: 100%;
    padding: 40px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--primary-color);
}

.office-hours {
    margin-top: 30px;
}

.office-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.office-hours p {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-form {
    padding: 40px;
    height: 100%;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

textarea.form-control {
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-weight: 600;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition-fast);
}

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

.social-links a:hover::after {
    width: 100%;
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

/* ===== Success Page ===== */
.success-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-gray);
    text-align: center;
}

.success-content {
    max-width: 600px;
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--tertiary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

/* ===== Privacy & Terms Pages ===== */
.page-content {
    padding-top: 100px;
    padding-bottom: 80px;
}

/* ===== Animation Effects ===== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ===== Icon styles (Font-based) ===== */
.icon-location:before {
    content: '📍';
    font-size: 1.5rem;
}

.icon-phone:before {
    content: '📞';
    font-size: 1.5rem;
}

.icon-email:before {
    content: '✉️';
    font-size: 1.5rem;
}

/* ===== Media Queries ===== */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .left::after, .right::after {
        left: 21px;
    }
    
    .right {
        left: 0;
    }
    
    .community-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 100px 0 70px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .community-image-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

html,body{
    overflow-x: hidden;
}