/* Logo */

.logo img{
    height:70px;
    width:auto;
    display:block;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#0f2f3a;
    color:white;
    font-family:'Poppins', Arial, sans-serif;
}

/* Header */

header{
    background:rgba(8,28,36,0.9);
    padding:20px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:sticky;
    top:0;

    z-index:1000;
}

header h1{
    color:#66e6ff;
    font-size:36px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-size:18px;
    transition:0.3s;
}

nav a:hover{
    color:#66e6ff;
}

/* Hero Section */

/* Hero Slider */

.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* Hero Slider */
.hero-content{
    position:relative;
    z-index:2;
    color:white;
    padding:20px;
}

.hero-content h2{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    margin-bottom:30px;
}

.hero-content a{
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
}

.hero-content a:hover{
    background:white;
}

section h2{
    font-size:60px;
    margin-bottom:20px;
}

section p{
    font-size:24px;
    margin-bottom:30px;
}

section a{
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
}

section a:hover{
    background:white;
}
/* Floating Mobile Contact Buttons */

.mobile-contact-buttons{
    display:none;
}

@media(max-width:768px){

    .mobile-contact-buttons{
        display:flex;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        z-index:9999;
    }

    .mobile-contact-buttons a{
        width:50%;
        text-align:center;
        padding:16px 0;
        color:white;
        text-decoration:none;
        font-size:18px;
        font-weight:bold;
    }

    .call-btn{
        background:#007c89;
    }

    .text-btn{
        background:#ff69b4;
    }
}
/* Welcome Section */

.welcome-section{
    background:#102a34;
    padding:90px 20px;
    text-align:center;
}

.welcome-container{
    max-width:900px;
    margin:auto;
}

.welcome-section h2{
    font-size:42px;
    color:#66e6ff;
    margin-bottom:25px;
}

.welcome-section p{
    font-size:20px;
    line-height:1.8;
    color:#e5e5e5;
    margin-bottom:35px;
}

.learn-more-btn{
    display:inline-block;
    background:#66e6ff;
    color:#000;
    padding:14px 32px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.learn-more-btn:hover{
    background:#ffffff;
}
/* Why Choose Us */

.why-section{
    background:#0f2f3a;
    padding:100px 20px;
    text-align:center;
}

.why-section h2{
    font-size:42px;
    color:#66e6ff;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.why-box{
    background:#163844;
    padding:40px 25px;
    border-radius:15px;
    transition:0.3s;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-box h3{
    font-size:28px;
    color:#66e6ff;
    margin-bottom:20px;
}

.why-box p{
    font-size:18px;
    line-height:1.7;
}
/* Featured Services */

.featured-services{
    background:#102a34;
    padding:100px 20px;
    text-align:center;
}

.featured-services h2{
    font-size:42px;
    color:#66e6ff;
    margin-bottom:50px;
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.featured-card{
    background:#163844;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}

.featured-card:hover{
    transform:translateY(-10px);
}

.featured-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.featured-card h3{
    color:#66e6ff;
    font-size:28px;
    margin:20px 0;
}

.featured-card p{
    padding:0 20px 30px;
    line-height:1.8;
}

.services-btn{
    display:inline-block;
    margin-top:50px;
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
}

.services-btn:hover{
    background:white;
}
/* Gallery Preview */

.gallery-preview{
    background:#0f2f3a;
    padding:100px 20px;
    text-align:center;
}

.gallery-preview h2{
    font-size:42px;
    color:#66e6ff;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.gallery-btn{
    display:inline-block;
    margin-top:50px;
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
}

.gallery-btn:hover{
    background:white;
}
/* Homepage Contact Section */

.home-contact{
    background:#102a34;
    padding:100px 20px;
    text-align:center;
}

.home-contact h2{
    font-size:42px;
    color:#66e6ff;
    margin-bottom:25px;
}

.home-contact p{
    font-size:20px;
    line-height:1.7;
    color:#e5e5e5;
}

.contact-info-box{
    background:#163844;
    max-width:850px;
    margin:40px auto;
    padding:35px;
    border-radius:15px;
}

.contact-info-box p{
    margin-bottom:15px;
}

.contact-info-box a{
    color:#66e6ff;
    text-decoration:none;
}

.contact-btn{
    display:inline-block;
    background:#66e6ff;
    color:#000;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.contact-btn:hover{
    background:#ffffff;
}
/* Footer */

.main-footer{
    background:#081c24;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
    padding:0 20px 50px;
}

.footer-box h3{
    color:#66e6ff;
    margin-bottom:20px;
    font-size:28px;
}

.footer-box p{
    line-height:1.8;
    color:#cccccc;
    margin-bottom:15px;
}

.footer-box a{
    display:block;
    color:#cccccc;
    text-decoration:none;
    margin-bottom:12px;
}

.footer-box a:hover{
    color:#66e6ff;
}

.footer-bottom{
    border-top:1px solid #1f3d48;
    text-align:center;
    padding:25px 20px;
}

.footer-bottom p{
    color:#999999;
}
/* Contact Page */

.contact-page{
    background:#102a34;
    padding:100px 20px;
    text-align:center;
}

.contact-page h2{
    font-size:48px;
    color:#66e6ff;
    margin-bottom:20px;
}

.contact-page p{
    font-size:20px;
    margin-bottom:40px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
}

.contact-info,
.contact-form-box{
    background:#163844;
    padding:40px;
    border-radius:15px;
}

.contact-info h3{
    color:#66e6ff;
    margin-bottom:25px;
    font-size:32px;
}

.contact-info p{
    line-height:1.8;
}

.contact-info a{
    color:#66e6ff;
    text-decoration:none;
}

.contact-form-box form{
    display:flex;
    flex-direction:column;
}

.contact-form-box input,
.contact-form-box textarea{
    margin-bottom:20px;
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:16px;
}

.contact-form-box textarea{
    height:150px;
    resize:none;
}

.contact-form-box button{
    background:#66e6ff;
    color:black;
    border:none;
    padding:15px;
    border-radius:40px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.contact-form-box button:hover{
    background:white;
}
/* About Page */

.about-page{
    background:#102a34;
    padding:100px 20px;
}

.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:50px;
    max-width:1200px;
    margin:auto;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about-content h2{
    font-size:48px;
    color:#66e6ff;
    margin-bottom:30px;
}

.about-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    color:#e5e5e5;
}

.about-btn{
    display:inline-block;
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
}

.about-btn:hover{
    background:white;
}
/* About Page */

.about-page{
    background:#102a34;
    padding:100px 20px;
}

.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:50px;
    max-width:1200px;
    margin:auto;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about-content h2{
    font-size:48px;
    color:#66e6ff;
    margin-bottom:30px;
}

.about-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    color:#e5e5e5;
}

.about-btn{
    display:inline-block;
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
}

.about-btn:hover{
    background:white;
}
/* Full Gallery Page */

.gallery-page{
    background:#102a34;
    padding:100px 20px;
    text-align:center;
}

.gallery-page h2{
    font-size:48px;
    color:#66e6ff;
    margin-bottom:20px;
}

.gallery-page p{
    font-size:20px;
    color:#e5e5e5;
    margin-bottom:50px;
}

.full-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    max-width:1300px;
    margin:auto;
}

.full-gallery-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.full-gallery-grid img:hover{
    transform:scale(1.04);
}
/* Booking Note */

.booking-note{
    margin-bottom:30px;
}

.booking-note p{
    color:#66e6ff;
    font-size:18px;
    line-height:1.7;
}
/* Thank You Page */

.thank-you-page{
    background:#102a34;
    min-height:70vh;
    padding:150px 20px;
    text-align:center;
}

.thank-you-page h2{
    font-size:56px;
    color:#66e6ff;
    margin-bottom:25px;
}

.thank-you-page p{
    font-size:22px;
    color:#e5e5e5;
    margin-bottom:40px;
}

.thank-you-btn{
    display:inline-block;
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
}

.thank-you-btn:hover{
    background:white;
}
/* Google Map Section */

.map-section{
    background:#0f2f3a;
    padding:100px 20px;
    text-align:center;
}

.map-section h2{
    font-size:42px;
    color:#66e6ff;
    margin-bottom:40px;
}

.map-container{
    max-width:1200px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
}
/* Mobile Hamburger Menu */

.menu-toggle{
    display:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}

@media(max-width:768px){

    header{
        flex-wrap:wrap;
        padding:20px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        margin-top:20px;
    }

    nav a{
        display:block;
        margin:15px 0;
        font-size:20px;
    }

    nav.active{
        display:flex;
    }
}
/* Typography Upgrade */

h1, h2, h3{
    font-family:'Playfair Display', serif;
    letter-spacing:0.5px;
}

p, a, input, textarea, button{
    font-family:'Poppins', Arial, sans-serif;
}

/* Blog Page */

.blog-page{
    background:#102a34;
    padding:100px 20px;
    text-align:center;
}

.blog-page h2{
    font-size:48px;
    color:#66e6ff;
    margin-bottom:20px;
}

.blog-page > p{
    font-size:20px;
    color:#e5e5e5;
    margin-bottom:50px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.blog-card{
    background:#163844;
    border-radius:18px;
    overflow:hidden;
    text-align:left;
    transition:0.3s;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card h3{
    color:#66e6ff;
    font-size:28px;
    margin:22px;
}

.blog-card p{
    color:#e5e5e5;
    line-height:1.7;
    margin:0 22px 25px;
}

.blog-card a{
    display:inline-block;
    margin:0 22px 30px;
    color:#000;
    background:#66e6ff;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.blog-card a:hover{
    background:#fff;
}
/* Blog Post Page */

.blog-post-page{
    background:#102a34;
    padding:100px 20px;
}

.blog-post-container{
    max-width:900px;
    margin:auto;
    background:#163844;
    padding:50px;
    border-radius:20px;
}

.blog-feature-image{
    width:100%;
    border-radius:15px;
    margin-bottom:40px;
}

.blog-post-container h1{
    font-size:52px;
    color:#66e6ff;
    margin-bottom:20px;
}

.blog-date{
    color:#cccccc;
    margin-bottom:40px;
}

.blog-post-container h2{
    font-size:36px;
    color:#66e6ff;
    margin-top:50px;
    margin-bottom:20px;
}

.blog-post-container p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
}

.blog-contact-btn{
    display:inline-block;
    margin-top:30px;
    background:#66e6ff;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
}

.blog-contact-btn:hover{
    background:white;
}
/* Social Media Icons */

.social-icons{
    display:flex;
    gap:20px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#66e6ff;
    color:black;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    font-size:20px;
    transition:0.3s;
}

.social-icons a:hover{
    background:white;
    transform:translateY(-5px);
}
/* Footer */

.main-footer{
    background:#081c24;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
    padding:0 20px 50px;
}

.footer-box h3{
    color:#66e6ff;
    margin-bottom:20px;
    font-size:28px;
}

.footer-box p{
    line-height:1.8;
    color:#cccccc;
    margin-bottom:15px;
}

.footer-box a{
    display:block;
    color:#cccccc;
    text-decoration:none;
    margin-bottom:12px;
}

.footer-box a:hover{
    color:#66e6ff;
}

.footer-bottom{
    border-top:1px solid #1f3d48;
    text-align:center;
    padding:25px 20px;
    margin-top:20px;
    width:100%;
}

.footer-bottom p{
    color:#999999;
    margin:0;
    text-align:center;
}

/* Services Page */

.services-page{
    background:#102a34;
    padding:100px 20px;
    text-align:center;
}

.services-page h2{
    font-size:48px;
    color:#66e6ff;
    margin-bottom:20px;
}

.services-page > p{
    max-width:850px;
    margin:0 auto 50px;
    font-size:20px;
    line-height:1.8;
    color:#e5e5e5;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.service-card{
    background:#163844;
    border-radius:18px;
    overflow:hidden;
    transition:0.3s;
    text-align:left;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.service-card h3{
    color:#66e6ff;
    font-size:28px;
    margin:22px 22px 12px;
}

.service-card p{
    color:#e5e5e5;
    font-size:17px;
    line-height:1.7;
    margin:0 22px 28px;
}

/* Tablet */
@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card img{
        height:220px;
    }
}
/* Mobile Blog Post Optimization */

@media(max-width:768px){

    .blog-post-page{
        padding:60px 15px;
    }

    .blog-post-container{
        padding:25px;
    }

    .blog-feature-image{
        height:250px;
    }

    .blog-post-container h1{
        font-size:36px;
        line-height:1.3;
    }

    .blog-post-container h2{
        font-size:28px;
    }

    .blog-post-container p{
        font-size:18px;
    }
}