/* RESET & FONTS */
@font-face {
    font-family: 'Texta';
    src: url('fonts/Texta-Regular.otf') format('opentype');
    font-weight: normal;
}
@font-face {
    font-family: 'Texta';
    src: url('fonts/Texta-Bold.otf') format('opentype');
    font-weight: bold;
}
@font-face {
    font-family: 'Texta';
    src: url('fonts/Texta-Light.otf') format('opentype');
    font-weight: 300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('img/background.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    font-family: 'Texta', sans-serif;
    line-height: 1.6;
    font-size: 18px;
}

.page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.main-logo { width: 200px; margin-bottom: 30px; }

.keywords-img {
    max-width: 600px;
    width: 100%;
    margin-bottom: 30px;
}

.main-title {
    font-size: 42px;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}

.title-separator {
    width: 40px;
    height: 1px;
    background: #3fe0d0;
    margin: 15px auto;
}

.tagline {
    font-size: 22px;
    letter-spacing: 4px;
    opacity: 0.8;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}

.instagram-link {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

/* SERVICES SECTION */

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

.services-sub {
    text-align: center;
    color: #3fe0d0;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-family: 'Texta', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARDS */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    transition: 0.3s ease;
    display: flex;
}

.card:hover {
    border-color: #3fe0d0;
    background: rgba(255, 255, 255, 0.05);
}

.card-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.card-left { flex: 1.5; }
.card-left h3 { font-size: 24px; }
.card-right { 
    margin-top: 100px;
    flex: 1; 
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    font-family: 'Texta', sans-serif;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}

.card-header h3{
    font-weight: 300;
}

.icon-circle {
    min-width: 50px;
    height: 50px;
    border: 1px solid #3fe0d0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3fe0d0;
    font-size: 20px;
}

.price {
    color: #3fe0d0;
    font-size: 24px;
    font-weight: 300;
}

.benefits-list {
    list-style: none;
    font-family: 'Texta', sans-serif;
}

.list-text{
    font-size: 16px; margin-bottom: 20px; opacity: 0.9;
}

.benefits-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.benefits-list li i { color: #3fe0d0; font-size: 12px; margin-top: 4px; }

.side-icon {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.fee-text { font-size: 16px; margin-bottom: 20px; line-height: 1.4; }
.fee-footnote { font-size: 16px; opacity: 0.8; margin-top: auto; margin-bottom: 20px; }

.btn-contact {
    border: 1px solid #3fe0d0;
    color: #3fe0d0;
    text-decoration: none;
    padding: 14px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: 'Texta', sans-serif;
}

.btn-contact:hover {
    background: #3fe0d0;
    color: #000;
}

/* FOOTER */
.contact-section {
    margin-top: 80px;
    text-align: center;
}

.get-in-touch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.get-in-touch-container .line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.get-in-touch { 
    letter-spacing: 4px; 
    font-weight: 300; 
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-info {
    font-size: 18px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-info i { 
    margin-right: 8px;
}

a {
    text-decoration: none;
    color: inherit; 
    transition: opacity 0.3s ease; 
}

a:hover { opacity: 0.7; }

.divider { margin: 0 20px; opacity: 0.3; }

.instagram-widget { margin-top: 40px; }

@keyframes gmove1{	0%{padding-top:8px;padding-bottom:0px;}	50%{padding-top:0px;padding-bottom:8px;} 100%{padding-top:8px;padding-bottom:0px;}}
@-webkit-keyframes gmove1{	0%{padding-top:8px;padding-bottom:0px;}	50%{padding-top:0px;padding-bottom:8px;} 100%{padding-top:8px;padding-bottom:0px;}}
@-moz-keyframes gmove1{	0%{padding-top:8px;padding-bottom:0px;}	50%{padding-top:0px;padding-bottom:8px;} 100%{padding-top:8px;padding-bottom:0px;}}
@-o-keyframes gmove1{	0%{padding-top:8px;padding-bottom:0px;}	50%{padding-top:0px;padding-bottom:8px;} 100%{padding-top:8px;padding-bottom:0px;}}

#downbtn
{
	-webkit-animation-name:gmove1;	-webkit-animation-duration:2s;	-webkit-animation-iteration-count:infinite;	-webkit-animation-timing-function:linear;
	-moz-animation-name:gmove1;	-moz-animation-duration:2s;	-moz-animation-iteration-count:infinite;	-moz-animation-timing-function:linear;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr; 
    }
    
    .card-content { flex-direction: column; }
    .card-right { 
        border-left: none; 
        padding-left: 0; 
        border-top: 1px solid rgba(255, 255, 255, 0.1); 
        padding-top: 30px; 
    }
}

@media (max-width: 600px) {
    .card-right { 
        margin-top: 0px;
    }

    .contact-info
    {
        display:block;
    }

    .contact-info a
    {
        display:block;
    }

    .contact-info .divider
    {
        display:none;
    }
}