@charset "utf-8";
/* CSS Document */
/* Glass Partitions Glasgow - Scoped Styles */
        .gp-wrapper {
			font-family: 'Montserrat', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; 
            background-color: white;
            color: #676566;
            line-height: 1.6;
        }

        .gp-wrapper * {
            box-sizing: border-box;
        }

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

        /* Main Content */
        .gp-main-content {
            padding: 60px 0;
        }

        .gp-content-section {
            margin-bottom: 60px;
        }

        .gp-section-title {
            color: #43c7e7;
            font-size: 2.2rem;
            font-weight: 600;
            margin: 0 0 30px 0;
            position: relative;
            padding-bottom: 10px;
        }
        
        /* White title for dark backgrounds */
        .gp-full-width-section .gp-section-title {
            color: white;
        }
        .gp-full-width-section .gp-section-title:after {
            background: white;
        }

        .gp-section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #43c7e7;
        }

        .gp-section-content {
            font-size: 1.1em;
            line-height: 1.7;
            margin: 0 0 30px 0;
        }
        
        .gp-full-width-section .gp-section-content {
            color: white;
        }

        /* Benefits Cards - Enhanced Glassmorphism Style */
        .gp-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .gp-benefit-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(67, 199, 231, 0.2);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Subtle gradient overlay */
        .gp-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(67, 199, 231, 0.05) 0%, 
                rgba(67, 199, 231, 0.02) 50%, 
                rgba(255, 255, 255, 0.1) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* Glass reflection effect */
        .gp-benefit-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 70%);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
            z-index: 2;
        }

        .gp-benefit-card:hover::after {
            opacity: 1;
            animation: gp-shine 0.8s ease-in-out;
        }

        @keyframes gp-shine {
            0% {
                transform: rotate(45deg) translateX(-200%);
            }
            100% {
                transform: rotate(45deg) translateX(200%);
            }
        }

        .gp-benefit-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(67, 199, 231, 0.2),
                0 15px 25px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            border-color: rgba(67, 199, 231, 0.5);
        }

        .gp-benefit-icon {
            font-size: 3rem;
            color: #43c7e7;
            margin: 0 0 20px 0;
            position: relative;
            z-index: 3;
            text-shadow: 0 2px 4px rgba(67, 199, 231, 0.3);
            transition: all 0.3s ease;
        }

        .gp-benefit-card:hover .gp-benefit-icon {
            transform: scale(1.1);
            color: #2ab5d9;
        }

        .gp-benefit-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0 0 15px 0;
            position: relative;
            z-index: 3;
            transition: color 0.3s ease;
        }

        .gp-benefit-card:hover .gp-benefit-title {
            color: #1a252f;
        }

        .gp-benefit-text {
            color: #546e7a;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 3;
            transition: color 0.3s ease;
        }

        .gp-benefit-card:hover .gp-benefit-text {
            color: #37474f;
        }

       
        /* Partition Types */
        .gp-partition-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .gp-partition-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: auto;
            min-height: 500px; /* Reduced from 600px since text is collapsible */
            display: flex;
            flex-direction: column;
        }

        .gp-partition-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(67, 199, 231, 0.15);
        }

        .gp-partition-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .gp-partition-header {
            background: #43c7e7;
            color: white;
            padding: 20px;
            text-align: center;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .gp-partition-title {
            font-size: 2.0rem;
            font-weight: 600;
			color: white;
            margin: 0;
            line-height: 1.3;
        }

        .gp-partition-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        /* Read More Text Styles - NO DUPLICATE CONTENT */
        .gp-partition-description {
            color: #676566;
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
            font-size: 1.05em;
            position: relative;
        }

        .gp-text-visible {
            display: block;
            margin: 0 0 0 0;
            position: relative;
            max-height: 4.8em; /* Approximately 3 lines */
            overflow: hidden;
        }

        .gp-text-visible:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 30%;
            height: 1.2em;
            background: linear-gradient(to right, transparent, white);
            pointer-events: none;
        }

        .gp-text-hidden {
            display: none;
            margin: 10px 0 0 0;
        }

        .gp-text-expanded .gp-text-hidden {
            display: block;
        }

        .gp-text-expanded .gp-text-visible {
            max-height: none;
            overflow: visible;
        }

        .gp-text-expanded .gp-text-visible:after {
            display: none;
        }

        .gp-read-more-btn {
            background: none;
            border: none;
            color: #43c7e7;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.95em;
            padding: 8px 0;
            margin-top: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            font-family: inherit;
        }

        .gp-read-more-btn:hover {
            color: #2ea3c7;
            transform: translateY(-1px);
        }

        .gp-read-more-btn i {
            font-size: 0.9em;
            transition: transform 0.3s ease;
        }

        .gp-text-expanded .gp-read-more-btn i {
            transform: rotate(180deg);
        }

        /* Pricing Section */
        .gp-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .gp-pricing-item {
            background: #ddd;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #43c7e7;
        }

        .gp-pricing-title {
            font-weight: 600;
            color: #676566;
            margin: 0 0 10px 0;
        }

        .gp-pricing-amount {
            font-size: 1.5rem;
            font-weight: 600;
            color: #43c7e7;
            margin: 0;
        }

        .gp-pricing-desc {
            margin: 0;
            color: #676566;
        }

        /* Process Steps */
        .gp-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .gp-process-step {
            text-align: center;
            padding: 20px;
        }

        .gp-step-number {
            width: 60px;
            height: 60px;
            background: #43c7e7;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 20px;
        }

        .gp-step-title {
            font-weight: 600;
            color: #676566;
            margin: 0 0 10px 0;
        }

        .gp-step-description {
            color: #939393;
            font-size: 1.3rem;
            margin: 0;
        }

        /* FAQ Section */
        .gp-faq-item {
            background: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .gp-faq-question {
            background: transparent;
            padding: 20px;
            font-weight: 600;
            color: #676566;
            cursor: pointer;
            transition: background 0.3s ease;
            margin: 0;
        }

        .gp-faq-question:hover {
            background: rgba(67, 199, 231, 0.1);
        }

        .gp-faq-answer {
            padding: 0 20px 20px 20px;
            color: #676566;
            border-top: 1px solid #e9ecef;
            display: none;
            margin: 0;
        }
        
        /* Footer CTA */
			.gp-footer-cta {
				background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
				background-size: cover;
				background-position: center;
				background-repeat: no-repeat;
				color: white;
				padding: 100px 0;
				text-align: center;
			}
			.gp-footer-title {
				font-size: 2.5em;
				color: white;
				margin: 0 0 20px 0;
				font-weight: 300;
			}
			.gp-footer-subtitle {
				font-size: 1.6rem;
				margin: 0 0 30px 0;
				opacity: 0.9;
			}
			.gp-cta-features {
				display: flex;
				justify-content: center;
				gap: 40px;
				margin: 30px 0;
				flex-wrap: wrap;
			}
			.gp-cta-feature {
				display: flex;
				align-items: center;
				gap: 10px;
			}
			.gp-cta-feature i {
				font-size: 1.6rem;
			}
		
			 .gp-cta-button {
				display: inline-block;
				padding: 15px 30px;
				background: #43c7e7;
				color: white;
				border: 1px solid #43c7e7;
				text-decoration: none;
				border-radius: 0px;
				font-weight: 600;
				text-transform: uppercase;
				letter-spacing: 1px;
				transition: all 0.3s ease;
				margin: 10px;
			}
			.gp-cta-button:hover {
				background: #369bb3;
				transform: translateY(-2px);
				box-shadow: 0 4px 12px rgba(0,0,0,0.1);
			}

			.gp-cta-button-secondary {
				display: inline-block;
				padding: 15px 30px;
				background: transparent;
				color: white;
				border: 1px solid white;
				text-decoration: none;
				border-radius: 0px;
				font-weight: 600;
				text-transform: uppercase;
				letter-spacing: 1px;
				transition: all 0.3s ease;
				margin: 10px;
			}
			.gp-cta-button-secondary:hover {
				background: white;
				color: #43c7e7;
				transform: translateY(-2px);
				box-shadow: 0 4px 12px rgba(0,0,0,0.1);
			}
        /* --- NEW STYLES FOR IMAGE BACKGROUND SECTIONS --- */
        .gp-full-width-section {
            padding: 60px 0;
            background-size: cover;
            background-position: center center;
            position: relative;
        }
        .gp-full-width-section .gp-content-section {
            margin-bottom: 0; /* Remove bottom margin inside this wrapper */
        }
        
        /* Gradient Overlay */
        .gp-full-width-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(103, 101, 102, 0.85), rgba(67, 199, 231, 0.7));
            z-index: 1;
        }

        /* Ensure content is above the overlay */
        .gp-full-width-section .gp-main-container {
            position: relative;
            z-index: 2;
        }
        
       /* Specific background images */
			#gp-types-section {
				background-image: url('glass-partitions-banner.webp'); 
			}

			#gp-faq-section {
				background-image: url('office-partitions-banner.webp');
			}
			/* --- END NEW STYLES --- */


        /* Responsive Design */
		@media (max-width: 1219px) {
  			/* Your CSS rules for screens below 1220px width go here */
			.gp-main-container {
                padding: 0 60px;
            }
			}
        @media (max-width: 768px) {
            .gp-hero-title {
                font-size: 2.2rem;
            }

            .gp-hero-subtitle {
                font-size: 1.1rem;
            }

            .gp-section-title {
                font-size: 1.8rem;
            }

            .gp-cta-features {
                flex-direction: column;
                gap: 20px;
            }

            .gp-benefits-grid,
            .gp-partition-types,
            .gp-pricing-grid,
            .gp-process-steps {
                grid-template-columns: 1fr;
            }
            
            .gp-partition-card {
                min-height: 450px;
            }
			/* Specific background images */
			#gp-types-section {
				margin-bottom: 60px; 
			}

			#gp-faq-section {
				margin-bottom: 60px; 
			}
        }