/* =========================================
   OCEAN BREEZE THEME — Calm & Flowing
   Colors: Sky Blue #0ea5e9 + Teal #06b6d4
========================================= */
:root {
    --bg-dark: #020617;
    --bg-card: rgba(14, 165, 233, 0.04);
    --bg-card-hover: rgba(14, 165, 233, 0.1);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;

    --accent-primary: #0ea5e9;
    --accent-secondary: #06b6d4;
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --section-padding: 100px 0;
    --border-radius-lg: 28px;
    --border-radius-sm: 16px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.08);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* =========================================
   Background Animated Shapes (Ocean waves)
========================================= */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(14, 165, 233, 0.12);
    top: -200px;
    left: -200px;
    animation: wave-drift 15s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.1);
    bottom: 10%;
    right: -150px;
    animation: wave-drift 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.08);
    top: 45%;
    left: 25%;
    animation: wave-drift 18s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes wave-drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

/* =========================================
   Navigation
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition-fast);
    backdrop-filter: blur(0px);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
}

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

.logo {
    font-size: 1.75rem;
    color: white;
}

.logo span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: white;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.greeting {
    font-size: 1.15rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.title {
    font-size: 4rem;
    margin-bottom: 10px;
}

.typing-container {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.typewriter {
    color: var(--accent-secondary);
    border-right: 3px solid var(--accent-secondary);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--accent-secondary); }
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 30% 70% 53% 47% / 26% 46% 54% 74%;
    padding: 8px;
    background: var(--accent-gradient);
    animation: ocean-morph 12s ease-in-out infinite;
}

@keyframes ocean-morph {
    0% { border-radius: 30% 70% 53% 47% / 26% 46% 54% 74%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 53% 47% / 26% 46% 54% 74%; }
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.floating-badge {
    position: absolute;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    padding: 14px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floating-badge i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.badge-1 {
    top: 20px;
    left: -30px;
    animation: float-gentle 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 40px;
    right: -20px;
    animation: float-gentle 6s ease-in-out infinite alternate;
}

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

/* =========================================
   Services Section
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(14, 165, 233, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(14, 165, 233, 0.05);
}

.service-card:hover::before {
    opacity: 0.04;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    background: rgba(14, 165, 233, 0.08);
}

.tiktok i { color: #38bdf8; }
.youtube i { color: #f43f5e; }
.instagram i { color: #e879f9; }
.generic i { color: var(--accent-primary); }

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   Why Choose Me (About) Section
========================================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.glass-panel {
    background: rgba(14, 165, 233, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.glass-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.features-list i {
    color: var(--accent-primary);
    background: rgba(14, 165, 233, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   Contact & Social Handles Section
========================================= */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(14, 165, 233, 0.06);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link i {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.whatsapp i { color: #25D366; }
.instagram i { color: #E1306C; }
.tiktok i { color: #ffffff; }
.facebook i { color: #1877F2; }

.social-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.social-handle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.social-link:hover {
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    transform: scaleX(1);
}

.social-link:hover i {
    transform: scale(1.15);
}

/* =========================================
   Footer
========================================= */
footer {
    border-top: 1px solid rgba(14, 165, 233, 0.08);
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.footer-logo span {
    color: var(--accent-primary);
}

.footer-content p {
    color: var(--text-muted);
}

/* =========================================
   Reveal Animations
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =========================================
   Media Queries
========================================= */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 200;
    position: relative;
}

@media (max-width: 992px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text { order: 2; }
    .hero-image { order: 1; }
    .hero-buttons { justify-content: center; }
    .subtitle { margin: 0 auto 40px; }
    .title { font-size: 3rem; }
    .typing-container { font-size: 1.5rem; }
    .features-list li { justify-content: center; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        padding-top: 100px;
        transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 150;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; margin: 15px 0; }
    .nav-links a:not(.btn) { font-size: 1.2rem; }
    .glass-panel { grid-template-columns: 1fr; gap: 20px; }
    .image-wrapper { width: 300px; height: 300px; }
}


/* =========================================
   Reviews Section
========================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.review-meta h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

.review-body {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.no-reviews {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.review-action {
    text-align: center;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    color: white;
}

.modal-content h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.star-rating-input {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    gap: 5px;
}

.star-rating-input i.active, .star-rating-input i:hover ~ i {
    color: var(--text-muted);
}

.star-rating-input:hover i {
    color: #f59e0b;
}

.star-rating-input i.selected {
    color: #f59e0b;
}
