/* Color Variables - Digital Mauro Brand */
:root {
    --neon-green: #00ff41;
    --dark-green: #00cc33;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --orange: #ff6600;
    --dark-orange: #cc5200;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,255,65,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-green);
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, var(--neon-green), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0,255,65,0.3);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    display: block;
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: var(--neon-green);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,255,65,0.4);
    border: 1px solid var(--neon-green);
}

/* Main Content */
.main {
    min-height: calc(100vh - 120px);
    padding: 2rem 0;
}

.section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 20px;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,255,65,0.2);
    border: 2px solid var(--neon-green);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

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

.hero-text {
    text-align: center;
    color: var(--white);
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.floating-icon.ai-icon {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon.tech-icon {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-icon.marketing-icon {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.floating-icon.data-icon {
    bottom: 10%;
    right: 30%;
    animation-delay: 1.5s;
}

.floating-icon.consulting-icon {
    top: 30%;
    right: 15%;
    animation-delay: 0.3s;
}

.floating-icon.teaching-icon {
    bottom: 40%;
    left: 30%;
    animation-delay: 0.8s;
}

.floating-icon.strategy-icon {
    top: 60%;
    right: 25%;
    animation-delay: 1.2s;
}

.floating-icon.growth-icon {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.8s;
}

.floating-icon.automation-icon {
    top: 80%;
    left: 15%;
    animation-delay: 2.2s;
}

.floating-icon.innovation-icon {
    top: 45%;
    left: 10%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Categories Section */
.categories-section {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.categories-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #667eea;
    font-weight: 700;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--orange));
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.category-card.marketing::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.category-card.technology::before {
    background: linear-gradient(90deg, #4834d4, #686de0);
}

.category-card.ai::before {
    background: linear-gradient(90deg, #00d2d3, #54a0ff);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-card p {
    color: #666;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--neon-green);
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--neon-green);
}

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

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

.btn-primary {
    background: var(--neon-green);
    color: var(--black);
    border-color: var(--neon-green);
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.4);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 65, 0.6);
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
}

/* Specific styles for modal buttons */
.modal .btn-secondary {
    background: #667eea;
    color: white;
    border: 2px solid #667eea;
}

.modal .btn-secondary:hover {
    background: #5a67d8;
    border-color: #5a67d8;
}

/* Cards */
.card-grid,
.blog-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--dark-gray);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,255,65,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--orange));
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,255,65,0.4);
    border-color: var(--orange);
}

.card-featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-meta {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.card-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.partner-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #f8f9fa;
    padding: 1rem;
}

/* Section Headings */
.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)" /></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFD700;
}

/* Discreet access button */
.btn-access-discreet {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-access-discreet:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-gray);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,255,65,0.3);
    position: relative;
    color: var(--white);
}

.modal-large {
    max-width: 800px;
}

.modal-gallery {
    max-width: 90vw;
    max-height: 90vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--neon-green);
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-weight: 600;
    color: var(--neon-green);
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    color: white;
}

.close-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

.modal-body {
    padding: 2rem;
    background: var(--dark-gray);
    color: var(--white);
}

/* Blog Detail Modal */
.blog-detail-content {
    max-width: 100%;
}

.blog-featured-image {
    width: 100%;
    margin-bottom: 2rem;
}

.blog-featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--orange);
    color: var(--orange);
}

.blog-content {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--white);
}

.blog-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.blog-gallery {
    margin-top: 2rem;
}

.blog-gallery h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Modal */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-main {
    position: relative;
    text-align: center;
}

.gallery-main img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.gallery-nav-btn {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.gallery-nav-btn:hover {
    background: rgba(0,0,0,0.9);
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 100px;
    overflow-y: auto;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    border-color: #667eea;
    transform: scale(1.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

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

/* Custom Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-input:checked + .checkbox-custom {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label:hover .checkbox-custom {
    border-color: #667eea;
}

/* File Upload Styles */
.file-upload-container {
    margin-bottom: 1rem;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
}

.file-upload-label:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.file-upload-label .material-icons {
    font-size: 1.5rem;
    color: #667eea;
}

.file-upload-text {
    color: #666;
    font-weight: 500;
}

.file-preview {
    margin-top: 1rem;
}

.file-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.file-preview-container {
    position: relative;
    display: inline-block;
}

.file-preview-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-preview-remove:hover {
    background: #d32f2f;
}

/* Media Library Styles */
.media-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-left: auto;
}

.admin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.media-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.media-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.media-item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
}

.media-item-info {
    padding: 1rem;
}

.media-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.media-item-size {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.media-item-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

.btn-use-media {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    flex: 1;
}

.btn-use-media:hover {
    background: #45a049;
}

.btn-delete-media {
    background: #f44336;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-delete-media:hover {
    background: #da190b;
}

.media-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-item-overlay {
    opacity: 1;
}

.media-item-overlay button {
    background: white;
    color: #333;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 0.25rem;
    font-size: 0.8rem;
}

/* Media Selection Modal */
.media-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.media-selection-item {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-selection-item:hover {
    border-color: #667eea;
    transform: scale(1.02);
}

.media-selection-item.selected {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.media-selection-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.media-selection-item-name {
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    color: #333;
}

/* Admin Styles */
.admin-section {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.admin-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-actions {
    margin-bottom: 2rem;
}

.admin-list {
    display: grid;
    gap: 1rem;
}

.admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.admin-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.admin-item-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.admin-item-content p {
    color: #666;
    margin: 0;
}

.admin-item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-edit {
    background: #4CAF50;
    color: white;
}

.btn-edit:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover {
    background: #da190b;
    transform: translateY(-2px);
}

/* Footer Admin */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column-edit {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.footer-column-edit h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

/* Error Messages */
.error-message {
    color: #f44336;
    background: #ffebee;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
    border-left: 4px solid #f44336;
}

.error-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .categories-grid,
    .card-grid,
    .blog-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        flex-direction: column;
    }
    
    .admin-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .admin-item-actions {
        align-self: flex-end;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .gallery-main img {
        max-height: 50vh;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

.hidden {
    display: none !important;
}

/* Content Blocks System */
.content-blocks-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 2px dashed #ddd;
    border-radius: 10px;
    background: #f8f9fa;
}

.content-blocks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.content-blocks-header h4 {
    margin: 0;
    color: #667eea;
}

.add-block-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.add-block-buttons .btn-small {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-block-buttons .btn-small:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.add-block-buttons .material-icons {
    font-size: 1rem;
}

#content-blocks-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.content-block {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.content-block-header {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-block-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #667eea;
}

.content-block-type .material-icons {
    font-size: 1.2rem;
}

.content-block-actions {
    display: flex;
    gap: 0.5rem;
}

.content-block-actions button {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.move-up-btn {
    background: #28a745;
    color: white;
}

.move-up-btn:hover {
    background: #218838;
}

.move-down-btn {
    background: #17a2b8;
    color: white;
}

.move-down-btn:hover {
    background: #138496;
}

.delete-block-btn {
    background: #dc3545;
    color: white;
}

.delete-block-btn:hover {
    background: #c82333;
}

.content-block-body {
    padding: 1rem;
}

.content-block-body textarea {
    min-height: 100px;
    resize: vertical;
}

.content-block-body input[type="url"] {
    margin-bottom: 0.5rem;
}

.gallery-urls {
    margin-bottom: 1rem;
}

.gallery-urls label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gallery-url-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.gallery-url-input input {
    flex: 1;
}

.gallery-url-input button {
    padding: 0.5rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.add-gallery-url {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.add-gallery-url:hover {
    background: #218838;
}

/* Blog Display with Content Blocks */
.blog-content-blocks {
    margin: 2rem 0;
}

.blog-block {
    margin-bottom: 2rem;
}

.blog-block-paragraph {
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.blog-block-image {
    text-align: center;
    margin: 2rem 0;
}

.blog-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-block-image img:hover {
    transform: scale(1.02);
}

.blog-block-gallery {
    margin: 2rem 0;
}

.blog-block-gallery h5 {
    margin-bottom: 1rem;
    color: var(--neon-green);
    font-size: 1.2rem;
}

.blog-block-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.blog-block-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-block-gallery-item:hover {
    transform: scale(1.05);
}

.blog-block-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empty state */
.content-blocks-empty {
    text-align: center;
    padding: 2rem;
    color: #666;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: white;
}

.content-blocks-empty .material-icons {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* Responsive adjustments for content blocks */
@media (max-width: 768px) {
    .content-blocks-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .add-block-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .content-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .content-block-actions {
        align-self: flex-end;
    }
    
    .blog-block-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--neon-green), var(--orange));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
}

/* Media Library Styles */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.media-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.media-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.media-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-info {
    padding: 0.75rem;
}

.media-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-meta {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.media-actions {
    padding: 0.5rem 0.75rem;
    display: flex;
    gap: 0.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.media-actions .btn {
    flex: 1;
    padding: 0.4rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.media-actions .btn.btn-danger {
    background: #dc3545;
    color: white;
}

.media-actions .btn.btn-danger:hover {
    background: #c82333;
}

.media-stats {
    font-size: 0.9rem;
    color: #666;
    margin-left: 1rem;
}

.media-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.media-empty .material-icons {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.media-empty p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Media Selection Modal */
.media-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

.media-selection-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.media-selection-item:hover {
    border-color: #667eea;
    transform: scale(1.02);
}

.media-selection-item .media-image {
    height: 120px;
}

.media-selection-item .media-info {
    padding: 0.5rem;
    text-align: center;
}

.media-selection-item .media-info h6 {
    margin: 0 0 0.25rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-selection-item .media-info small {
    color: #666;
    font-size: 0.7rem;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.media-selection-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay .material-icons {
    color: white;
    font-size: 2rem;
}

/* File Upload Enhancements */
.image-upload-options {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.file-upload-container {
    position: relative;
    margin-bottom: 1rem;
    flex: 1;
}

.media-library-option {
    display: flex;
    align-items: center;
}

.media-library-option .btn {
    white-space: nowrap;
}

.file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
}

.file-upload-label:hover {
    border-color: #667eea;
    background: #f0f2ff;
    color: #667eea;
}

.file-upload-label .material-icons {
    font-size: 1.5rem;
}

.file-upload-text {
    font-weight: 500;
}

.file-preview {
    margin-top: 1rem;
}

.file-preview-container {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.file-preview-container img {
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    display: block;
}

.file-preview-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-preview-remove:hover {
    background: rgba(220, 53, 69, 1);
}

.file-info {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem;
    font-size: 0.8rem;
}

.file-info p {
    margin: 0.25rem 0;
}

/* Button Size Variants */
.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.btn.btn-small .material-icons {
    font-size: 1rem;
}

/* Discreet Access Button */
.btn-access-discreet {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-access-discreet:hover {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Blog Pagination Styles */
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-stats {
    color: #666;
    font-size: 0.9rem;
}

.blog-pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-pagination.bottom {
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.pagination-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #667eea;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: #f8f9fa;
    border-color: #667eea;
    color: #5a67d8;
}

.pagination-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.pagination-btn.disabled {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-btn .material-icons {
    font-size: 1.2rem;
}

.pagination-dots {
    padding: 0.5rem;
    color: #6c757d;
}

.page-size-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.page-size-selector select {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    background: white;
    color: #333;
    cursor: pointer;
}

.no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-blogs .material-icons {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-blogs h3 {
    margin: 1rem 0 0.5rem 0;
    color: #333;
}

.no-blogs p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Blog Controls */
@media (max-width: 768px) {
    .blog-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .blog-pagination {
        align-self: center;
    }
    
    .pagination-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 36px;
    }
    
    .page-size-selector {
        align-self: center;
    }
}

/* Responsive Media Grid */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .media-selection-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .media-actions {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .media-stats {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* Admin Footer Actions */
.admin-actions-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.admin-actions-footer .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .admin-actions-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h2 {
    color: var(--neon-green);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-intro h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.about-title {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    font-size: 1.1rem;
}

.about-highlights {
    background: var(--dark-gray);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.about-highlights h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
}

.about-highlights li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--orange);
    font-size: 1.1rem;
    color: var(--white);
}

.about-highlights li:last-child {
    border-bottom: none;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Experience Section */
.experience-section {
    background: var(--dark-gray);
    border: 2px solid var(--orange);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.experience-section h4 {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--black);
    border-radius: 10px;
    border: 1px solid var(--neon-green);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,65,0.3);
}

.skill-icon {
    font-size: 2rem;
    background: var(--neon-green);
    color: var(--black);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skill-item strong {
    color: var(--neon-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.skill-item p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Profile Card */
.profile-card {
    background: var(--dark-gray);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,255,65,0.2);
    text-align: center;
    position: sticky;
    top: 2rem;
}

.profile-image {
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--neon-green);
}

.profile-info h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.profile-info p {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-green);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
    color: #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 15px;
    color: white;
}

.service-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.service-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    margin-top: 1.5rem;
}

.service-price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-card {
        position: static;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Loading Indicator */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}