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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1152px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    z-index: 50;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 64px;
}

.nav-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo a {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Rotating Images */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

/* Hero container - side by side layout */
.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 30;
}

/* Background overlay */
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none;
}

/* Decorative floating dots */
.decorative-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 15;
    pointer-events: none;
}

.dot {
    position: absolute;
    border-radius: 50%;
}

.dot-1 {
    top: 80px;
    left: 40px;
    width: 16px;
    height: 16px;
    background: #60a5fa;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.dot-2 {
    top: 160px;
    right: 80px;
    width: 24px;
    height: 24px;
    background: #c084fc;
    opacity: 0.4;
    animation: bounce 3s ease-in-out infinite;
}

.dot-3 {
    bottom: 128px;
    left: 80px;
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-4 {
    bottom: 80px;
    right: 40px;
    width: 20px;
    height: 20px;
    background: #7dd3fc;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

/* Rotating images container */
.hero-images-container {
    position: relative;
    z-index: 10;
    width: 384px;
    height: 448px;
    pointer-events: none;
    flex-shrink: 0;
}

.hero-image-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 384px;
    height: 448px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 1000ms ease-in-out;
    overflow: hidden;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Stacking positions */
.hero-image-card[data-position="0"] {
    transform: translateY(0px) scale(1.0);
    opacity: 1;
    z-index: 10;
}

.hero-image-card[data-position="1"] {
    transform: translateY(-60px) scale(0.9);
    opacity: 0.6;
    z-index: 9;
}

.hero-image-card[data-position="2"] {
    transform: translateY(-120px) scale(0.8);
    opacity: 0.4;
    z-index: 8;
}

.hero-image-card[data-position="3"],
.hero-image-card[data-position="4"],
.hero-image-card[data-position="5"],
.hero-image-card[data-position="6"],
.hero-image-card[data-position="7"] {
    transform: translateY(-200px) scale(0.6);
    opacity: 0;
    z-index: 7;
}

/* Hero content centered */
.hero-content-centered {
    position: relative;
    z-index: 30;
    max-width: 600px;
    width: 100%;
    text-align: left;
    padding: 0 16px;
    color: white;
    margin-right: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.highlight {
    color: #6C8094;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #6C8094;
    color: white;
}

.btn-primary:hover {
    background: transparent;
    border-color: #6C8094;
    color: #6C8094;
    transform: translateY(-2px);
}

/* Make Get Started button more prominent on pricing page */
#get-started-btn {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 12px rgba(108, 128, 148, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#get-started-btn:hover {
    box-shadow: 0 6px 16px rgba(108, 128, 148, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #283444;
    transform: translateY(-2px);
}

/* Animation keyframes */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

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

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-content-centered {
        margin-right: 0;
    }
    
    .hero-images-container {
        width: 320px;
        height: 384px;
    }
    
    .hero-image-card {
        width: 320px;
        height: 384px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content-centered {
        margin-right: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-images-container {
        width: 256px;
        height: 320px;
    }
    
    .hero-image-card {
        width: 256px;
        height: 320px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .dot-1 {
        top: 40px;
        left: 20px;
    }
    
    .dot-2 {
        top: 100px;
        right: 20px;
    }
    
    .dot-3 {
        bottom: 80px;
        left: 20px;
    }
    
    .dot-4 {
        bottom: 40px;
        right: 20px;
    }
}

/* Section Styles */
section {
    padding: 120px 0 80px 0;
}

section:first-of-type {
    padding-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: #283444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

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

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-category h3 i {
    color: #2563eb;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-item {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Payment Section */
.pricing {
    background: #f9fafb;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Pricing Calculator */
.pricing-calculator {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.pricing-calculator h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    text-align: center;
}

.pricing-calculator > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.calculator-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.calculator-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1f2937;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator-select:focus {
    outline: none;
    border-color: #6C8094;
    box-shadow: 0 0 0 3px rgba(108, 128, 148, 0.1);
}

.calculator-select:hover {
    border-color: #6C8094;
}

.calculator-result {
    background: linear-gradient(135deg, #283444 0%, #3d4f66 100%);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.result-content {
    text-align: center;
    width: 100%;
}

.result-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.result-price {
    font-size: 3rem;
    font-weight: 700;
    color: #6C8094;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.result-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.result-content .btn {
    margin-top: 1rem;
}

.deposit-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.deposit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.deposit-amount {
    color: #6C8094;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.remaining-amount {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Deposit Form */
.deposit-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.deposit-form h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.deposit-form .form-group {
    margin-bottom: 1.5rem;
}

.deposit-form label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.deposit-form input,
.deposit-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1f2937;
    transition: all 0.3s ease;
}

.deposit-form input:focus,
.deposit-form textarea:focus {
    outline: none;
    border-color: #6C8094;
    box-shadow: 0 0 0 3px rgba(108, 128, 148, 0.1);
}

.deposit-form textarea {
    resize: vertical;
    min-height: 120px;
}

.payment-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #6b7280;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.deposit-row {
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    color: #1f2937;
    font-weight: 600;
}

.summary-value {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
}

#payment-element {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
}

.payment-message {
    color: #dc2626;
    margin-top: 1rem;
    font-size: 0.95rem;
    min-height: 20px;
}

.payment-message.success {
    color: #059669;
}

.btn-submit {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    background: #2d3748 !important;
    border-color: #2d3748 !important;
}

.btn-submit:hover {
    background: #1a202c !important;
    border-color: #1a202c !important;
    color: white !important;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#button-text.hidden {
    display: none;
}

@media (max-width: 768px) {
    .calculator-result {
        min-height: 200px;
    }
    
    .result-price {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .deposit-form-container {
        padding: 1.5rem;
    }
}

.payment-info h3,
.pricing-section h3,
.payment-methods h3,
.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.payment-info p {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-category {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h4 i {
    color: #2563eb;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.service-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

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

.pricing-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-width: 100px;
}

.payment-option:hover {
    transform: translateY(-2px);
}

.payment-option i {
    font-size: 2rem;
    color: #2563eb;
}

.payment-option span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.cta-section {
    background: #283444;
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
}

/* Video Showcase Section */
.video-showcase {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 80px 0;
    position: relative;
}

.video-showcase .section-header h2 {
    color: white;
}

.video-showcase .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.video-showcase-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.video-showcase-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.video-showcase-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: #000;
    overflow: hidden;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-showcase-content {
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.video-showcase-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.video-views i {
    font-size: 1rem;
}

.video-views span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.video-showcase-cta {
    text-align: center;
    margin-top: 2rem;
}

.video-showcase-cta .btn {
    min-width: 200px;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #6C8094;
    color: white;
    border: 2px solid #6C8094;
}

.video-showcase-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 968px) {
    .video-showcase-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .video-showcase-container {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .video-showcase-grid {
        padding: 1.5rem;
    }
    
    .video-showcase-container {
        height: 250px;
    }
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 80px 0;
    color: white;
}

.portfolio-showcase .section-header h2 {
    color: white;
}

.portfolio-showcase .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-showcase-item {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.portfolio-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-showcase-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.portfolio-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.portfolio-showcase-item:hover .portfolio-showcase-image img {
    transform: scale(1.05);
}

.portfolio-showcase-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.portfolio-showcase-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(108, 128, 148, 0.8);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.portfolio-showcase-content h3 {
    color: white;
    margin: 0.75rem 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.portfolio-showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.portfolio-showcase-cta {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-showcase-cta .btn {
    min-width: 220px;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #6C8094;
    color: white;
    border: 2px solid #6C8094;
}

.portfolio-showcase-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (max-width: 968px) {
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-showcase-image {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .portfolio-showcase {
        padding: 60px 0;
    }
    
    .portfolio-showcase-grid {
        gap: 1.5rem;
    }
    
    .portfolio-showcase-image {
        height: 220px;
    }
    
    .portfolio-showcase-content {
        padding: 1.25rem;
    }
    
    .portfolio-showcase-content h3 {
        font-size: 1.15rem;
    }
}

/* Quick Overview Section */
.quick-overview {
    background: #f9fafb;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: #283444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.overview-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.overview-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #283444;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 80px 0;
}

.gallery .section-header h2 {
    color: white;
}

.gallery .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.gallery-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.gallery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #283444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.gallery-video {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    background: #000;
    border-radius: 0;
}

.gallery-image video {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #283444;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    pointer-events: none;
}

.video-placeholder p {
    font-size: 0.875rem;
    margin-top: 10px;
    opacity: 0.7;
}

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

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

.gallery-link {
    width: 60px;
    height: 60px;
    background: #6C8094;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.gallery-link:hover {
    transform: scale(1.1);
}

.gallery-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.gallery-content .video-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.gallery-content .video-views i {
    font-size: 1rem;
}

.gallery-content .video-views span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 80px 0;
}

.portfolio .section-header h2 {
    color: white;
}

.portfolio .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-notice {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid #6C8094;
    padding: 1.5rem 2rem;
    margin: 2rem auto 3rem;
    border-radius: 8px;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.portfolio-notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.portfolio-notice strong {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #6C8094;
    background: #ffffff;
    color: #6C8094;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: #6C8094;
    color: #ffffff;
    border-color: #6C8094;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 128, 148, 0.3);
}

.filter-btn.active {
    background: #6C8094;
    color: white;
    border-color: #6C8094;
    box-shadow: 0 4px 12px rgba(108, 128, 148, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.portfolio-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
    border-radius: 10px 10px 0 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.portfolio-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #283444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-link {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-content .btn {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.portfolio-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.portfolio-content .btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.portfolio-content .btn:hover i {
    transform: translateX(4px);
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.app-store-btn i {
    font-size: 1.25rem;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.contact-info-centered {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
}

.contact-note {
    font-size: 0.9rem;
    color: #9ca3af !important;
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Add spacing above project description */
.form-group:has(textarea) {
    margin-top: 2rem;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 120px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    font-family: inherit;
    height: auto;
}

.country-code-select:focus {
    outline: none;
    border-color: #2563eb;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

@media (max-width: 480px) {
    .country-code-select {
        flex: 0 0 100px;
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    line-height: 1.6;
}

.cookie-text p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p:last-child {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-btn {
    padding: 12px 32px;
    background: rgba(108, 128, 148, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn:hover {
    background: rgba(108, 128, 148, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 128, 148, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-text p:first-child {
        font-size: 1rem;
    }
    
    .cookie-text p:last-child {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 32px;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col:first-child {
    max-width: 350px;
}

.footer-col h3 {
    color: #6C8094;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #6C8094;
}

.footer-col .contact-info li {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-col .contact-info li i {
    color: #6C8094;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6C8094;
    border-color: #6C8094;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Payment Success Page */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2rem 4rem 2rem;
    background: #f9fafb;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-content h1 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.success-details {
    text-align: left;
    margin-bottom: 2.5rem;
}

.success-details h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #283444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-content h4 {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.email-notice {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #f3f4f6;
    border-left: 3px solid #6C8094;
    border-radius: 4px;
    font-size: 0.9rem !important;
    color: #374151 !important;
}

.countdown-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(108, 128, 148, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(108, 128, 148, 0.2);
}

.countdown-text {
    font-size: 1rem;
    color: #1f2937;
    margin: 0;
    font-weight: 500;
}

.countdown-text #countdown {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6C8094;
    padding: 0 0.3rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem 1.5rem;
    }
    
    .success-content h1 {
        font-size: 1.75rem;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .step {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        left: 50%;
    }

    .nav-menu {
        position: fixed;
        left: 50%;
        top: 88px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 16px;
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        transform: translateX(-50%) translateY(-150%);
        text-align: center;
        transition: transform 0.3s ease;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        padding: 2rem 0;
        z-index: 40;
    }
    
    .nav-menu.active {
        transform: translateX(-50%) translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .hero {
        padding-top: 96px;
    }

    section {
        padding-top: 140px;
    }

    .card-1 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .card-2 {
        top: 30%;
        right: 10%;
        transform: translateY(-50%);
    }

    .card-3 {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .card-4 {
        top: 70%;
        left: 10%;
        transform: translateY(-50%);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content-centered {
        padding: 1rem 0;
    }
    
    .contact-info-centered {
        max-width: 100%;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .payment-options {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .portfolio-notice {
        padding: 1rem 1.25rem;
        margin: 1.5rem auto 2rem;
    }

    .portfolio-notice p {
        font-size: 0.9rem;
    }

    .portfolio-notice strong {
        font-size: 1rem;
    }

    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .app-store-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .app-store-btn {
        justify-content: center;
        width: 100%;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .skill-item:hover {
        border: 1px solid currentColor;
    }
}

/* Payment Page Styles */
.payment-section {
    min-height: 100vh;
    padding: 140px 2rem 4rem 2rem;
    background: #f9fafb;
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.payment-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.project-summary h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-item.highlight {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    border: 2px solid #6C8094;
}

.summary-label {
    font-weight: 500;
    color: #4a5568;
}

.summary-value {
    font-weight: 600;
    color: #1a202c;
    font-size: 1.1rem;
}

.summary-item.highlight .summary-value {
    color: #6C8094;
    font-size: 1.3rem;
}

.summary-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.payment-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-form-wrapper h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.payment-section-title {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.payment-amount-display {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 2px solid #6C8094;
}

.payment-amount-display span {
    font-size: 1.1rem;
    color: #4a5568;
}

.payment-amount-display strong {
    font-size: 1.5rem;
    color: #6C8094;
}

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

.form-actions .btn {
    flex: 1;
}

.payment-message {
    display: none; /* Hidden by default */
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    background: #fee;
    color: #c00;
    text-align: center;
}

.payment-message:not(:empty) {
    display: block; /* Only show when it has content */
}

.payment-message.success {
    background: #efe;
    color: #060;
}

/* Responsive Payment Page */
@media (max-width: 968px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-summary {
        position: static;
    }
    
    .payment-section {
        padding: 120px 1.5rem 3rem 1.5rem;
    }
    
    .payment-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .payment-header h2 {
        font-size: 2rem;
    }
    
    .payment-header p {
        font-size: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .payment-amount-display {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .portfolio-overlay,
    .contact-form,
    .social-links {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}
